From 66a7fbe263c2be27b0df22a1daf831062c67519b Mon Sep 17 00:00:00 2001 From: Earnie Boyd Date: Mon, 11 Jun 2001 20:06:54 +0000 Subject: * objidl.h (IMalloc::ReAlloc()): Correct declaration. (IMalloc::Free()): Ditto. --- winsup/w32api/ChangeLog | 5 +++++ winsup/w32api/include/objidl.h | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog index 62b384c..2f357d5 100644 --- a/winsup/w32api/ChangeLog +++ b/winsup/w32api/ChangeLog @@ -1,4 +1,9 @@ +2001.06.11 TAMURA Kent + + * objidl.h (IMalloc::ReAlloc()): Correct declaration. + (IMalloc::Free()): Ditto. + 2001-06-11 Danny Smith * include/shlobj.h (REGSTR_PATH_EXPLORER): Unicode it. diff --git a/winsup/w32api/include/objidl.h b/winsup/w32api/include/objidl.h index 63d1448..26160b7 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; -- cgit v1.1