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.

32 lines
846 B

  1. /* Copyright 1999 American Power Conversion, All Rights Reserved
  2. *
  3. * Description:
  4. * Internal Service Events for the State Machine
  5. *
  6. * Revision History:
  7. * dsmith 31Mar1999 Created
  8. * sberard 14May1999 Added hibernation events
  9. */
  10. #ifndef _INC_EVENTS_H_
  11. #define _INC_EVENTS_H_
  12. ////////////////////////////////////////////////////
  13. // Internal Service Events for the State Machine
  14. ////////////////////////////////////////////////////
  15. #define NO_EVENT -1
  16. #define INITIALIZATION_COMPLETE 0
  17. #define LOST_COMM 1
  18. #define POWER_FAILED 2
  19. #define POWER_RESTORED 3
  20. #define LOW_BATTERY 4
  21. #define ON_BATTERY_TIMER_EXPIRED 5
  22. #define SHUTDOWN_ACTIONS_COMPLETED 6
  23. #define SHUTDOWN_COMPLETE 7
  24. #define STOPPED 8
  25. #define RETURN_FROM_HIBERNATION 9
  26. #define HIBERNATION_ERROR 10
  27. #endif