2003-07-26 Eric R. Krause <ekrause_98@users.sourceforge.net>
* include/onjidl.h (IMalloc): Fix typo.
This commit is contained in:
parent
8c21a4cdfb
commit
ffe3e7ef4f
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue