registry.h 368 B

123456789101112
  1. #ifndef REGISTRY_H
  2. #define REGISTRY_H
  3. #define NSSM_REGISTRY "SYSTEM\\CurrentControlSet\\Services\\%s\\Parameters"
  4. #define NSSM_REG_EXE "Application"
  5. #define NSSM_REG_FLAGS "AppParameters"
  6. #define NSSM_REG_DIR "AppDirectory"
  7. int create_parameters(char *, char *, char *, char *);
  8. int get_parameters(char *, char *, int, char *, int, char *, int);
  9. #endif