Allow appending to the service environment.
[nssm.git] / registry.h
1 #ifndef REGISTRY_H\r
2 #define REGISTRY_H\r
3 \r
4 #define NSSM_REGISTRY "SYSTEM\\CurrentControlSet\\Services\\%s\\Parameters"\r
5 #define NSSM_REG_EXE "Application"\r
6 #define NSSM_REG_FLAGS "AppParameters"\r
7 #define NSSM_REG_DIR "AppDirectory"\r
8 #define NSSM_REG_ENV "AppEnvironment"\r
9 #define NSSM_REG_ENV_EXTRA "AppEnvironmentExtra"\r
10 #define NSSM_REG_EXIT "AppExit"\r
11 #define NSSM_REG_THROTTLE "AppThrottle"\r
12 #define NSSM_REG_STOP_METHOD_SKIP "AppStopMethodSkip"\r
13 #define NSSM_REG_KILL_CONSOLE_GRACE_PERIOD "AppStopMethodConsole"\r
14 #define NSSM_REG_KILL_WINDOW_GRACE_PERIOD "AppStopMethodWindow"\r
15 #define NSSM_REG_KILL_THREADS_GRACE_PERIOD "AppStopMethodThreads"\r
16 #define NSSM_REG_STDIN "AppStdin"\r
17 #define NSSM_REG_STDOUT "AppStdout"\r
18 #define NSSM_REG_STDERR "AppStderr"\r
19 #define NSSM_REG_STDIO_SHARING "ShareMode"\r
20 #define NSSM_REG_STDIO_DISPOSITION "CreationDisposition"\r
21 #define NSSM_REG_STDIO_FLAGS "FlagsAndAttributes"\r
22 #define NSSM_STDIO_LENGTH 29\r
23 \r
24 int create_messages();\r
25 int create_parameters(nssm_service_t *);\r
26 int create_exit_action(char *, const char *);\r
27 int set_environment(char *, HKEY, char *, char **, unsigned long *);\r
28 int expand_parameter(HKEY, char *, char *, unsigned long, bool, bool);\r
29 int expand_parameter(HKEY, char *, char *, unsigned long, bool);\r
30 int set_expand_string(HKEY, char *, char *);\r
31 int set_number(HKEY, char *, unsigned long);\r
32 int get_number(HKEY, char *, unsigned long *, bool);\r
33 int get_number(HKEY, char *, unsigned long *);\r
34 void override_milliseconds(char *, HKEY, char *, unsigned long *, unsigned long, unsigned long);\r
35 int get_parameters(nssm_service_t *, STARTUPINFO *);\r
36 int get_exit_action(char *, unsigned long *, unsigned char *, bool *);\r
37 \r
38 #endif\r