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.

62 lines
866 B

  1. /*++
  2. Copyright (c) 1997 Microsoft Corporation
  3. Module Name:
  4. loaddsdt.c
  5. Abstract:
  6. This handles loading the DSDT table and all steps leading up to it
  7. Author:
  8. Stephane Plante (splante)
  9. Environment:
  10. Kernel mode only.
  11. Revision History:
  12. 02-Jun-97 Initial Revision
  13. --*/
  14. #ifndef _LOADDSDT_H_
  15. #define _LOADDSDT_H_
  16. PRSDT
  17. ACPILoadFindRSDT(
  18. VOID
  19. );
  20. NTSTATUS
  21. ACPILoadProcessDSDT(
  22. ULONG_PTR Address
  23. );
  24. NTSTATUS
  25. ACPILoadProcessFADT(
  26. PFADT Fadt
  27. );
  28. NTSTATUS
  29. ACPILoadProcessFACS(
  30. ULONG_PTR Address
  31. );
  32. NTSTATUS
  33. ACPILoadProcessRSDT(
  34. VOID
  35. );
  36. BOOLEAN
  37. ACPILoadTableCheckSum(
  38. PVOID StartAddress,
  39. ULONG Length
  40. );
  41. #endif