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.

36 lines
635 B

  1. /*++=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  2. Copyright (c) 1999 Microsoft Corporation
  3. Module Name:
  4. mem.h
  5. Abstract:
  6. Internal memory allocation/deallocation routines.
  7. Author:
  8. Paul M Midgen (pmidge) 01-June-2000
  9. Revision History:
  10. 01-June-2000 pmidge
  11. Created
  12. =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--*/
  13. #ifndef __MEM_H__
  14. #define __MEM_H__
  15. #include "common.h"
  16. void _InitMem(void);
  17. void* __cdecl operator new(size_t size);
  18. void __cdecl operator delete(void* pv);
  19. #endif /* __MEM_H__ */