nssm.h 395 B

123456789101112131415161718192021
  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 "messages.h"
  9. #include "registry.h"
  10. #include "service.h"
  11. #include "gui.h"
  12. int str_equiv(const char *, const char *);
  13. #define NSSM "nssm"
  14. #define NSSM_VERSION "2.2"
  15. #define NSSM_DATE "2010-04-04"
  16. #define NSSM_RUN "run"
  17. #endif