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.
|
|
/*++
Copyright (c) 1997 Microsoft Corporation
Module Name:
reg.h
Abstract:
These functions access the registry
Author:
Jason Clark (jasoncl) Stephane Plante (splante)
Environment:
Kernel mode only.
Revision History:
03-Jun-97 Initial Revision
--*/
#ifndef _REG_H_
#define _REG_H_
PUCHAR ACPIRegLocalCopyString( IN PUCHAR Destination, IN PUCHAR Source, IN ULONG MaxLength );
VOID ACPIRegDumpAcpiTable ( PSZ pszName, PVOID Table, ULONG Length, PDESCRIPTION_HEADER Header );
VOID ACPIRegDumpAcpiTables( VOID );
NTSTATUS ACPIRegReadEntireAcpiTable ( IN HANDLE RevisionKey, IN PVOID *Table, IN BOOLEAN MemoryMapped );
BOOLEAN ACPIRegReadAMLRegistryEntry( IN PVOID *Table, IN BOOLEAN Memorymapped );
#endif
|