Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEarnie Boyd <earnie@users.sf.net>2001-06-12 00:06:54 +0400
committerEarnie Boyd <earnie@users.sf.net>2001-06-12 00:06:54 +0400
commit66a7fbe263c2be27b0df22a1daf831062c67519b (patch)
tree5470b329da797168f6e30b229eee60379e85c651
parent371b76ef3e221248c7df49906014037c66292901 (diff)
* objidl.h (IMalloc::ReAlloc()): Correct declaration.
(IMalloc::Free()): Ditto.
-rw-r--r--winsup/w32api/ChangeLog5
-rw-r--r--winsup/w32api/include/objidl.h4
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;