Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
295 B

  1. #ifndef _MEM_MGR_H_
  2. #define _MEM_MGR_H_
  3. #ifndef WIN32_LEAN_AND_MEAN
  4. #define WIN32_LEAN_AND_MEAN
  5. #endif //WIN32_LEAN_AND_MEAN
  6. #include <windows.h>
  7. #include <windowsx.h>
  8. #define MemAlloc(a) GlobalAllocPtr(GHND, (a))
  9. #define MemFree(a) GlobalFreePtr((a))
  10. #endif //_MEM_MGR_H_