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
518 B
33 lines
518 B
/*++
|
|
|
|
File:
|
|
|
|
acpi\driver\inc\acpi.h
|
|
|
|
Author:
|
|
|
|
Jason Clark
|
|
|
|
Description:
|
|
|
|
Contains all the definitions for modules that are exported from the
|
|
shared acpi code base
|
|
|
|
Revision History:
|
|
|
|
12/03/96 - Initial Revision
|
|
|
|
--*/
|
|
|
|
#ifndef _INC_ACPI_H_
|
|
#define _INC_ACPI_H_
|
|
|
|
//
|
|
// Make sure that pool tagging is defined
|
|
//
|
|
#ifdef ExAllocatePool
|
|
#undef ExAllocatePool
|
|
#endif
|
|
#define ExAllocatePool(a,b) ExAllocatePoolWithTag(a,b,'ipcA')
|
|
|
|
#endif
|