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.

58 lines
863 B

  1. /*++
  2. Copyright (c) 1997 Microsoft Corporation
  3. Module Name:
  4. acpiinit.h
  5. Abstract:
  6. ACPI OS Independent initialization routines
  7. Author:
  8. Jason Clark (JasonCl)
  9. Stephane Plante (SPlante)
  10. Environment:
  11. NT Kernel Model Driver only
  12. Revision History:
  13. --*/
  14. #ifndef _ACPIINIT_H_
  15. #define _ACPIINIT_H_
  16. extern PACPIInformation AcpiInformation;
  17. extern PRSDTINFORMATION RsdtInformation;
  18. extern PNSOBJ ProcessorList[];
  19. BOOLEAN
  20. ACPIInitialize(
  21. IN PVOID Context
  22. );
  23. NTSTATUS
  24. ACPIInitializeAMLI(
  25. VOID
  26. );
  27. NTSTATUS
  28. ACPIInitializeDDB(
  29. IN ULONG Index
  30. );
  31. NTSTATUS
  32. ACPIInitializeDDBs(
  33. VOID
  34. );
  35. ULONG
  36. GetPBlkAddress(
  37. IN UCHAR Processor
  38. );
  39. #endif