registry.h 544 B

12345678910111213141516
  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. #define NSSM_REG_EXIT "AppExit"
  8. int create_messages();
  9. int create_parameters(char *, char *, char *, char *);
  10. int create_exit_action(char *, const char *);
  11. int get_parameters(char *, char *, int, char *, int, char *, int);
  12. int get_exit_action(char *, unsigned long *, unsigned char *, bool *);
  13. #endif