mirror of http://git.nssm.cc/nssm/nssm.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
368 B
C
13 lines
368 B
C
22 years ago
|
#ifndef REGISTRY_H
|
||
|
#define REGISTRY_H
|
||
|
|
||
|
#define NSSM_REGISTRY "SYSTEM\\CurrentControlSet\\Services\\%s\\Parameters"
|
||
|
#define NSSM_REG_EXE "Application"
|
||
|
#define NSSM_REG_FLAGS "AppParameters"
|
||
|
#define NSSM_REG_DIR "AppDirectory"
|
||
|
|
||
|
int create_parameters(char *, char *, char *, char *);
|
||
|
int get_parameters(char *, char *, int, char *, int, char *, int);
|
||
|
|
||
|
#endif
|