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.
22 lines
381 B
22 lines
381 B
/*
|
|
* ACPISI.H - ACPI OS Independent System Indicator Routines
|
|
*
|
|
* Notes:
|
|
*
|
|
* This file provides OS independent functions for managing system indicators
|
|
*
|
|
*/
|
|
|
|
typedef enum _SYSTEM_INDICATORS {
|
|
|
|
SystemStatus,
|
|
MessageWaiting
|
|
|
|
} SYSTEM_INDICATORS;
|
|
|
|
|
|
extern BOOLEAN SetSystemIndicator (SYSTEM_INDICATORS SystemIndicators, ULONG Value);
|
|
|
|
|
|
|
|
|