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.

18 lines
484 B

  1. // define the application class name
  2. #define PWS_TRAY_WINDOW_CLASS _T("PWS_TRAY_WINDOW")
  3. // special window messages
  4. enum {
  5. WM_PWS_TRAY_UPDATE_STATE = WM_USER,
  6. WM_PWS_TRAY_SHELL_NOTIFY,
  7. WM_PWS_TRAY_SHUTDOWN_NOTIFY
  8. };
  9. // timer messages
  10. enum {
  11. PWS_TRAY_CHECKFORSERVERRESTART = 0,
  12. PWS_TRAY_CHECKTOSEEIFINETINFODIED
  13. };
  14. // number of milliseconds for the restart timer to wait
  15. #define TIMER_RESTART 5000
  16. #define TIMER_SERVERDIED 5000