nssm.h 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. #ifndef NSSM_H
  2. #define NSSM_H
  3. #define _WIN32_WINNT 0x0500
  4. #include <shlwapi.h>
  5. #include <stdarg.h>
  6. #include <stdio.h>
  7. #include <tchar.h>
  8. #include <windows.h>
  9. #include "service.h"
  10. #include "event.h"
  11. #include "imports.h"
  12. #include "messages.h"
  13. #include "process.h"
  14. #include "registry.h"
  15. #include "settings.h"
  16. #include "io.h"
  17. #include "gui.h"
  18. int str_equiv(const TCHAR *, const TCHAR *);
  19. void strip_basename(TCHAR *);
  20. int str_number(const TCHAR *, unsigned long *);
  21. int usage(int);
  22. #define NSSM _T("NSSM")
  23. #ifdef _WIN64
  24. #define NSSM_ARCHITECTURE _T("64-bit")
  25. #else
  26. #define NSSM_ARCHITECTURE _T("32-bit")
  27. #endif
  28. #ifdef _DEBUG
  29. #define NSSM_DEBUG _T(" debug")
  30. #else
  31. #define NSSM_DEBUG _T("")
  32. #endif
  33. #define NSSM_CONFIGURATION NSSM_ARCHITECTURE NSSM_DEBUG
  34. #include "version.h"
  35. /*
  36. Throttle the restart of the service if it stops before this many
  37. milliseconds have elapsed since startup. Override in registry.
  38. */
  39. #define NSSM_RESET_THROTTLE_RESTART 1500
  40. /*
  41. How many milliseconds to wait for the application to die after sending
  42. a Control-C event to its console. Override in registry.
  43. */
  44. #define NSSM_KILL_CONSOLE_GRACE_PERIOD 1500
  45. /*
  46. How many milliseconds to wait for the application to die after posting to
  47. its windows' message queues. Override in registry.
  48. */
  49. #define NSSM_KILL_WINDOW_GRACE_PERIOD 1500
  50. /*
  51. How many milliseconds to wait for the application to die after posting to
  52. its threads' message queues. Override in registry.
  53. */
  54. #define NSSM_KILL_THREADS_GRACE_PERIOD 1500
  55. /* Margin of error for service status wait hints in milliseconds. */
  56. #define NSSM_WAITHINT_MARGIN 2000
  57. /* Methods used to try to stop the application. */
  58. #define NSSM_STOP_METHOD_CONSOLE (1 << 0)
  59. #define NSSM_STOP_METHOD_WINDOW (1 << 1)
  60. #define NSSM_STOP_METHOD_THREADS (1 << 2)
  61. #define NSSM_STOP_METHOD_TERMINATE (1 << 3)
  62. /* Startup types. */
  63. #define NSSM_STARTUP_AUTOMATIC 0
  64. #define NSSM_STARTUP_DELAYED 1
  65. #define NSSM_STARTUP_MANUAL 2
  66. #define NSSM_STARTUP_DISABLED 3
  67. /* Exit actions. */
  68. #define NSSM_EXIT_RESTART 0
  69. #define NSSM_EXIT_IGNORE 1
  70. #define NSSM_EXIT_REALLY 2
  71. #define NSSM_EXIT_UNCLEAN 3
  72. #define NSSM_NUM_EXIT_ACTIONS 4
  73. /* Process priority. */
  74. #define NSSM_REALTIME_PRIORITY 0
  75. #define NSSM_HIGH_PRIORITY 1
  76. #define NSSM_ABOVE_NORMAL_PRIORITY 2
  77. #define NSSM_NORMAL_PRIORITY 3
  78. #define NSSM_BELOW_NORMAL_PRIORITY 4
  79. #define NSSM_IDLE_PRIORITY 5
  80. /* How many milliseconds to wait before updating service status. */
  81. #define NSSM_SERVICE_STATUS_DEADLINE 20000
  82. #endif