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.

41 lines
522 B

  1. /*++
  2. Copyright (c) 1991 Microsoft Corporation
  3. Module Name:
  4. oscheap.c
  5. Abstract:
  6. This module contains "local" heap management code for OS Chooser.
  7. Author:
  8. Geoff Pease (gpease) May 28 1998
  9. Revision History:
  10. --*/
  11. #ifndef __OSCHEAP_H__
  12. #define __OSCHEAP_H__
  13. #ifndef UINT
  14. #define UINT unsigned int
  15. #endif // UINT
  16. void
  17. OscHeapInitialize( );
  18. PCHAR
  19. OscHeapAlloc(
  20. IN UINT iSize
  21. );
  22. PCHAR
  23. OscHeapFree(
  24. IN PCHAR pMemory
  25. );
  26. #endif // __OSCHEAP_H__