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.

46 lines
639 B

  1. /*++
  2. Copyright (c) 1997 Microsoft Corporation
  3. Module Name:
  4. acpienbl.c
  5. Abstract:
  6. This module contains functions to put an ACPI machine in ACPI mode.
  7. Author:
  8. Jason Clark (jasoncl)
  9. Environment:
  10. NT Kernel Model Driver only
  11. --*/
  12. #ifndef _ACPIENBL_H_
  13. #define _ACPIENBL_H_
  14. VOID
  15. ACPIEnableEnterACPIMode(
  16. IN BOOLEAN ReEnable
  17. );
  18. VOID
  19. ACPIEnableInitializeACPI(
  20. IN BOOLEAN ReEnable
  21. );
  22. VOID
  23. ACPIEnablePMInterruptOnly(
  24. VOID
  25. );
  26. ULONG
  27. ACPIEnableQueryFixedEnables(
  28. VOID
  29. );
  30. #endif