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.

33 lines
485 B

  1. /*++
  2. File:
  3. acpi\driver\inc\acpi.h
  4. Author:
  5. Jason Clark
  6. Description:
  7. Contains all the definitions for modules that are exported from the
  8. shared acpi code base
  9. Revision History:
  10. 12/03/96 - Initial Revision
  11. --*/
  12. #ifndef _INC_ACPI_H_
  13. #define _INC_ACPI_H_
  14. //
  15. // Make sure that pool tagging is defined
  16. //
  17. #ifdef ExAllocatePool
  18. #undef ExAllocatePool
  19. #endif
  20. #define ExAllocatePool(a,b) ExAllocatePoolWithTag(a,b,'ipcA')
  21. #endif