#include <windows.h>Go to the source code of this file.
Defines | |
| #define | WIN32_LEAN_AND_MEAN |
| #define | VC_EXTRALEAN |
| #define | true TRUE |
| #define | false FALSE |
| #define | MemAlloc(sz) HeapAlloc(GetProcessHeap(), 0, sz) |
| #define | MemFree(ptr) HeapFree(GetProcessHeap(), 0, ptr) |
| #define | MemReAlloc(ptr, sz) HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, ptr, sz) |
Typedefs | |
| typedef BOOL | bool |
|
|
Allocate memory.
|
|
|
Free memory.
|
|
|
Resize a block of memory.
|
|
|
Shouldn't be used anywhere, but sometimes excludes extra stuff. |
|
|
Exclude rarely-used stuff from Windows headers to speed compilation. |
|
|
False value. |
|
|
True value. |
|
|
As a replacement for C++'s intrinsic |
1.2.10 written by Dimitri van Heesch,
© 1997-2001