* objidl.h (IMalloc::ReAlloc()): Correct declaration.

(IMalloc::Free()): Ditto.
This commit is contained in:
Earnie Boyd 2001-06-11 20:06:54 +00:00
parent 371b76ef3e
commit 66a7fbe263
2 changed files with 7 additions and 2 deletions

View file

@ -1,4 +1,9 @@
2001.06.11 TAMURA Kent <tkent@users.sourceforge.net>
* objidl.h (IMalloc::ReAlloc()): Correct declaration.
(IMalloc::Free()): Ditto.
2001-06-11 Danny Smith <dannysmith@users.sourceforge.net>
* include/shlobj.h (REGSTR_PATH_EXPLORER): Unicode it.

View file

@ -482,8 +482,8 @@ DECLARE_INTERFACE_(IMalloc,IUnknown)
STDMETHOD_(ULONG,AddRef)(THIS) PURE;
STDMETHOD_(ULONG,Release)(THIS) PURE;
STDMETHOD_(void*,Alloc)(THIS_ ULONG) PURE;
STDMETHOD_(void,ReAlloc)(THIS_ void*) PURE;
STDMETHOD_(void*,Free)(THIS_ void*) PURE;
STDMETHOD_(void*,ReAlloc)(THIS_ void*,ULONG) PURE;
STDMETHOD_(void,Free)(THIS_ void*) PURE;
STDMETHOD_(ULONG,GetSize)(THIS_ void*) PURE;
STDMETHOD_(int,DidAlloc)(THIS_ void*) PURE;
STDMETHOD_(void,HeapMinimize)(THIS) PURE;