nssm.h 372 B

1234567891011121314151617181920
  1. #ifndef NSSM_H
  2. #define NSSM_H
  3. #define _WIN32_WINNT 0x0500
  4. #include <stdarg.h>
  5. #include <stdio.h>
  6. #include <windows.h>
  7. #include "event.h"
  8. #include "registry.h"
  9. #include "service.h"
  10. #include "gui.h"
  11. int str_equiv(const char *, const char *);
  12. #define NSSM "nssm"
  13. #define NSSM_VERSION "2.0"
  14. #define NSSM_DATE "2006-09-09"
  15. #define NSSM_RUN "run"
  16. #endif