registry.h 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. #ifndef REGISTRY_H
  2. #define REGISTRY_H
  3. #define NSSM_REGISTRY _T("SYSTEM\\CurrentControlSet\\Services\\%s\\Parameters")
  4. #define NSSM_REG_EXE _T("Application")
  5. #define NSSM_REG_FLAGS _T("AppParameters")
  6. #define NSSM_REG_DIR _T("AppDirectory")
  7. #define NSSM_REG_ENV _T("AppEnvironment")
  8. #define NSSM_REG_ENV_EXTRA _T("AppEnvironmentExtra")
  9. #define NSSM_REG_EXIT _T("AppExit")
  10. #define NSSM_REG_RESTART_DELAY _T("AppRestartDelay")
  11. #define NSSM_REG_THROTTLE _T("AppThrottle")
  12. #define NSSM_REG_STOP_METHOD_SKIP _T("AppStopMethodSkip")
  13. #define NSSM_REG_KILL_CONSOLE_GRACE_PERIOD _T("AppStopMethodConsole")
  14. #define NSSM_REG_KILL_WINDOW_GRACE_PERIOD _T("AppStopMethodWindow")
  15. #define NSSM_REG_KILL_THREADS_GRACE_PERIOD _T("AppStopMethodThreads")
  16. #define NSSM_REG_STDIN _T("AppStdin")
  17. #define NSSM_REG_STDOUT _T("AppStdout")
  18. #define NSSM_REG_STDERR _T("AppStderr")
  19. #define NSSM_REG_STDIO_SHARING _T("ShareMode")
  20. #define NSSM_REG_STDIO_DISPOSITION _T("CreationDisposition")
  21. #define NSSM_REG_STDIO_FLAGS _T("FlagsAndAttributes")
  22. #define NSSM_REG_ROTATE _T("AppRotateFiles")
  23. #define NSSM_REG_ROTATE_ONLINE _T("AppRotateOnline")
  24. #define NSSM_REG_ROTATE_SECONDS _T("AppRotateSeconds")
  25. #define NSSM_REG_ROTATE_BYTES_LOW _T("AppRotateBytes")
  26. #define NSSM_REG_ROTATE_BYTES_HIGH _T("AppRotateBytesHigh")
  27. #define NSSM_REG_PRIORITY _T("AppPriority")
  28. #define NSSM_REG_AFFINITY _T("AppAffinity")
  29. #define NSSM_STDIO_LENGTH 29
  30. HKEY open_registry(const TCHAR *, const TCHAR *, REGSAM sam);
  31. HKEY open_registry(const TCHAR *, REGSAM sam);
  32. int create_messages();
  33. int create_parameters(nssm_service_t *, bool);
  34. int create_exit_action(TCHAR *, const TCHAR *, bool);
  35. int set_environment(TCHAR *, HKEY, TCHAR *, TCHAR **, unsigned long *);
  36. int format_environment(TCHAR *, unsigned long, TCHAR **, unsigned long *);
  37. int unformat_environment(TCHAR *, unsigned long, TCHAR **, unsigned long *);
  38. int expand_parameter(HKEY, TCHAR *, TCHAR *, unsigned long, bool, bool);
  39. int expand_parameter(HKEY, TCHAR *, TCHAR *, unsigned long, bool);
  40. int set_expand_string(HKEY, TCHAR *, TCHAR *);
  41. int set_number(HKEY, TCHAR *, unsigned long);
  42. int get_number(HKEY, TCHAR *, unsigned long *, bool);
  43. int get_number(HKEY, TCHAR *, unsigned long *);
  44. void override_milliseconds(TCHAR *, HKEY, TCHAR *, unsigned long *, unsigned long, unsigned long);
  45. int get_parameters(nssm_service_t *, STARTUPINFO *);
  46. int get_exit_action(const TCHAR *, unsigned long *, TCHAR *, bool *);
  47. #endif