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.

44 lines
740 B

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. acpigpio.h
  5. Abstract:
  6. contains all the structures related to reading/writting to directly
  7. to the GP IO registers
  8. Environment:
  9. Kernel mode only
  10. Revision History:
  11. 03/22/00 - Initial Revision
  12. --*/
  13. #ifndef _ACPIGPIO_H_
  14. #define _ACPIGPIO_H_
  15. UCHAR
  16. ACPIReadGpeStatusRegister (
  17. ULONG Register
  18. );
  19. VOID
  20. ACPIWriteGpeStatusRegister (
  21. ULONG Register,
  22. UCHAR Value
  23. );
  24. VOID
  25. ACPIWriteGpeEnableRegister (
  26. ULONG Register,
  27. UCHAR Value
  28. );
  29. #endif