windows-nt/Source/XPSP1/NT/base/busdrv/acpi/driver/shared/acpigpio.h
2020-09-26 16:20:57 +08:00

45 lines
696 B
C

/*++
Copyright (c) 2000 Microsoft Corporation
Module Name:
acpigpio.h
Abstract:
contains all the structures related to reading/writting to directly
to the GP IO registers
Environment:
Kernel mode only
Revision History:
03/22/00 - Initial Revision
--*/
#ifndef _ACPIGPIO_H_
#define _ACPIGPIO_H_
UCHAR
ACPIReadGpeStatusRegister (
ULONG Register
);
VOID
ACPIWriteGpeStatusRegister (
ULONG Register,
UCHAR Value
);
VOID
ACPIWriteGpeEnableRegister (
ULONG Register,
UCHAR Value
);
#endif