Source code of Windows XP (NT5)
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.

40 lines
885 B

  1. //=============================================================================
  2. // Microsoft (R) Bloodhound (tm). Copyright (C) 1991-1993.
  3. //
  4. // MODULE: objmgr.h
  5. //
  6. // Modification History
  7. //
  8. // raypa 03/17/93 Created.
  9. //=============================================================================
  10. #if !defined(_OBJMGR_)
  11. #define _OBJMGR_
  12. #pragma pack(1)
  13. #ifdef __cplusplus
  14. extern "C"{
  15. #endif
  16. //=============================================================================
  17. // Memory functions.
  18. //=============================================================================
  19. extern LPVOID WINAPI AllocMemory(DWORD size);
  20. extern LPVOID WINAPI ReallocMemory(LPVOID ptr, DWORD NewSize);
  21. extern VOID WINAPI FreeMemory(LPVOID ptr);
  22. extern DWORD_PTR WINAPI MemorySize(LPVOID ptr);
  23. void MemInit();
  24. #ifdef __cplusplus
  25. }
  26. #endif
  27. #pragma pack()
  28. #endif