home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1997 January / pcpro-0197.bin / Code / Prog / listing3.txt < prev   
Encoding:
Text File  |  1996-11-01  |  464 b   |  10 lines

  1. IMalloc = class(IUnknown)
  2. public
  3.     function Alloc(cb: Longint): Pointer; virtual; stdcall; abstract;
  4.     function Realloc(pv: Pointer; cb: Longint): Pointer; virtual; stdcall; abstract;
  5.     procedure Free(pv: Pointer); virtual; stdcall; abstract;
  6.     function GetSize(pv: Pointer): Longint; virtual; stdcall; abstract;
  7.     function DidAlloc(pv: Pointer): Integer; virtual; stdcall; abstract;
  8.     procedure HeapMinimize; virtual; stdcall; abstract;
  9. end;
  10.