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.

66 lines
1010 B

  1. /*++
  2. Copyright (c) 1997 Microsoft Corporation
  3. Module Name:
  4. reg.h
  5. Abstract:
  6. These functions access the registry
  7. Author:
  8. Jason Clark (jasoncl)
  9. Stephane Plante (splante)
  10. Environment:
  11. Kernel mode only.
  12. Revision History:
  13. 03-Jun-97 Initial Revision
  14. --*/
  15. #ifndef _REG_H_
  16. #define _REG_H_
  17. PUCHAR
  18. ACPIRegLocalCopyString(
  19. IN PUCHAR Destination,
  20. IN PUCHAR Source,
  21. IN ULONG MaxLength
  22. );
  23. VOID
  24. ACPIRegDumpAcpiTable (
  25. PSZ pszName,
  26. PVOID Table,
  27. ULONG Length,
  28. PDESCRIPTION_HEADER Header
  29. );
  30. VOID
  31. ACPIRegDumpAcpiTables(
  32. VOID
  33. );
  34. NTSTATUS
  35. ACPIRegReadEntireAcpiTable (
  36. IN HANDLE RevisionKey,
  37. IN PVOID *Table,
  38. IN BOOLEAN MemoryMapped
  39. );
  40. BOOLEAN
  41. ACPIRegReadAMLRegistryEntry(
  42. IN PVOID *Table,
  43. IN BOOLEAN Memorymapped
  44. );
  45. #endif