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.

29 lines
1.0 KiB

  1. // -------------------------------------------------------
  2. // UMS_Ctrl.h
  3. // definition of the UtilityManager service control codes
  4. //
  5. // Author: J. Eckhardt, ECO Kommunikation
  6. // (c) 1997-99 Microsoft
  7. //
  8. // History: created nov-15-98 by JE
  9. // -------------------------------------------------------
  10. #ifndef _UMS_CTRL_H_
  11. #define _UMS_CTRL_H_
  12. // --------------------
  13. #define UTILMAN_SERVICE_NAME _TEXT("UtilMan")
  14. #define UTILMAN_START_BYHOTKEY _TEXT("/Hotkey")
  15. // show the UtilityManager dialog code
  16. #define UM_SERVICE_CONTROL_SHOWDIALOG 128
  17. // internal to UM:
  18. // UtilityManager dialog has closed code
  19. #define UM_SERVICE_CONTROL_DIALOGCLOSED 129
  20. // UtilityManager internal reserved
  21. #define UM_SERVICE_CONTROL_RESERVED 130
  22. // reserved for Microsoft
  23. #define UM_SERVICE_CONTROL_MIN_RESERVED 131
  24. #define UM_SERVICE_CONTROL_MAX_RESERVED 141
  25. // codes to launch a specific client
  26. #define UM_SERVICE_CONTROL_FIRSTCLIENT 142
  27. #define UM_SERVICE_CONTROL_LASTCLIENT 255
  28. #endif _UMS_CTRL_H_