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.

34 lines
776 B

  1. //-----------------------------------------------------------------------------
  2. //
  3. //
  4. // File: aqmem.h
  5. //
  6. // Description: Header file with memory macros required to build AQUEUE
  7. // in the platinum build environment.
  8. //
  9. // Author: Mike Swafford (MikeSwa)
  10. //
  11. // History:
  12. // 7/15/99 - MikeSwa Created
  13. //
  14. // Copyright (C) 1999 Microsoft Corporation
  15. //
  16. //-----------------------------------------------------------------------------
  17. #ifndef __AQMEM_H__
  18. #define __AQMEM_H__
  19. //Wrappers for transmem macros
  20. #ifndef PvMalloc
  21. #define PvMalloc(x) TrMalloc(x)
  22. #endif //PvMalloc
  23. #ifndef PvRealloc
  24. #define PvRealloc(x) TrRealloc(x)
  25. #endif //PvRealloc
  26. #ifndef FreePv
  27. #define FreePv(x) TrFree(x)
  28. #endif //FreePv
  29. #endif //__AQMEM_H__