diff options
author | Earnie Boyd <earnie@users.sf.net> | 2001-06-11 20:06:54 +0000 |
---|---|---|
committer | Earnie Boyd <earnie@users.sf.net> | 2001-06-11 20:06:54 +0000 |
commit | 66a7fbe263c2be27b0df22a1daf831062c67519b (patch) | |
tree | 5470b329da797168f6e30b229eee60379e85c651 /winsup/w32api | |
parent | 371b76ef3e221248c7df49906014037c66292901 (diff) | |
download | cygnal-66a7fbe263c2be27b0df22a1daf831062c67519b.tar.gz cygnal-66a7fbe263c2be27b0df22a1daf831062c67519b.tar.bz2 cygnal-66a7fbe263c2be27b0df22a1daf831062c67519b.zip |
* objidl.h (IMalloc::ReAlloc()): Correct declaration.
(IMalloc::Free()): Ditto.
Diffstat (limited to 'winsup/w32api')
-rw-r--r-- | winsup/w32api/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/w32api/include/objidl.h | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog index 62b384ca3..2f357d5c1 100644 --- a/winsup/w32api/ChangeLog +++ b/winsup/w32api/ChangeLog @@ -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. diff --git a/winsup/w32api/include/objidl.h b/winsup/w32api/include/objidl.h index 63d14484e..26160b7d7 100644 --- a/winsup/w32api/include/objidl.h +++ b/winsup/w32api/include/objidl.h @@ -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; |