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
592 B

  1. /****************************** Module Header ******************************\
  2. * Module Name: winutil.h
  3. *
  4. * Copyright (c) 1991, Microsoft Corporation
  5. *
  6. * Define windows utility functions
  7. *
  8. * History:
  9. * 12-09-91 Davidc Created.
  10. \***************************************************************************/
  11. //
  12. // Exported function prototypes
  13. //
  14. PVOID
  15. Alloc(
  16. ULONG
  17. );
  18. ULONG
  19. GetAllocSize(
  20. PVOID
  21. );
  22. BOOL
  23. Free(
  24. PVOID
  25. );
  26. //
  27. // Define a print routine that only prints on a debug system
  28. //
  29. #if DBG
  30. #define DbgOnlyPrint DbgPrint
  31. #else
  32. #define DbgOnlyPrint
  33. #endif