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.

43 lines
567 B

  1. /*++
  2. Copyright (c) 1999 Microsoft Corporation
  3. Module Name:
  4. Alloc.h
  5. Abstract:
  6. Custom heap allocator
  7. Author:
  8. George V. Reilly (GeorgeRe) Oct-1999
  9. Environment:
  10. Win32 - User Mode
  11. Project:
  12. Internet Information Server RunTime Library
  13. Revision History:
  14. 10/11/1999 - Initial
  15. --*/
  16. #ifndef __ALLOC_H__
  17. #define __ALLOC_H__
  18. #ifndef __IRTLMISC_H__
  19. # include <irtlmisc.h>
  20. #endif // !__IRTLMISC_H__
  21. extern HANDLE g_hHeap;
  22. BOOL
  23. WINAPI
  24. IisHeapInitialize();
  25. VOID
  26. WINAPI
  27. IisHeapTerminate();
  28. #endif // __ALLOC_H__