OSDN Git Service

2003-07-26 Eric R. Krause <ekrause_98@users.sourceforge.net>
authordannysmith <dannysmith>
Sat, 26 Jul 2003 01:01:03 +0000 (01:01 +0000)
committerdannysmith <dannysmith>
Sat, 26 Jul 2003 01:01:03 +0000 (01:01 +0000)
* include/onjidl.h (IMalloc): Fix typo.

winsup/w32api/ChangeLog
winsup/w32api/include/objidl.h

index 98da635..5130c46 100644 (file)
@@ -1,3 +1,7 @@
+2003-07-26  Eric R. Krause  <ekrause_98@users.sourceforge.net>
+
+       * include/objidl.h (IMalloc): Fix typo.
+
 2003-07-24  Danny Smith <dannysmith@users.sourceforge.net>
 
        * include/dkk/ntifs.h: Fix typo in guard for
index f9ec9d5..6cbd038 100644 (file)
@@ -1,6 +1,6 @@
 #ifndef _OBJIDL_H
 #define _OBJIDL_H
-#if __GNUC__ >=3
+#if __GNUC__ >= 3
 #pragma GCC system_header
 #endif
 
@@ -493,7 +493,7 @@ 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*,ULONG) 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;