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.

46 lines
506 B

  1. /*++
  2. Copyright (c) 1999 Microsoft Corporation
  3. All rights reserved.
  4. Module Name:
  5. srvrmem.h
  6. Abstract:
  7. Prototypes for Memory Allocation routines for spoolsv.exe.
  8. Author:
  9. Khaled Sedky (Khaleds) 13-Jan-1999
  10. Revision History:
  11. --*/
  12. #ifndef _SRVRMEM_H_
  13. #define _SRVRMEM_H_
  14. #define DWORD_ALIGN_UP(size) (((size)+3)&~3)
  15. LPVOID
  16. SrvrAllocSplMem(
  17. DWORD cb
  18. );
  19. BOOL
  20. SrvrFreeSplMem(
  21. LPVOID pMem
  22. );
  23. LPVOID
  24. SrvrReallocSplMem(
  25. LPVOID pOldMem,
  26. DWORD cbOld,
  27. DWORD cbNew
  28. );
  29. #endif