4 #define _WIN32_WINNT 0x0500
\r
10 #include "service.h"
\r
12 #include "imports.h"
\r
13 #include "messages.h"
\r
14 #include "process.h"
\r
15 #include "registry.h"
\r
19 int str_equiv(const TCHAR *, const TCHAR *);
\r
20 void strip_basename(TCHAR *);
\r
23 #define NSSM _T("nssm")
\r
24 #include "version.h"
\r
27 Throttle the restart of the service if it stops before this many
\r
28 milliseconds have elapsed since startup. Override in registry.
\r
30 #define NSSM_RESET_THROTTLE_RESTART 1500
\r
33 How many milliseconds to wait for the application to die after sending
\r
34 a Control-C event to its console. Override in registry.
\r
36 #define NSSM_KILL_CONSOLE_GRACE_PERIOD 1500
\r
38 How many milliseconds to wait for the application to die after posting to
\r
39 its windows' message queues. Override in registry.
\r
41 #define NSSM_KILL_WINDOW_GRACE_PERIOD 1500
\r
43 How many milliseconds to wait for the application to die after posting to
\r
44 its threads' message queues. Override in registry.
\r
46 #define NSSM_KILL_THREADS_GRACE_PERIOD 1500
\r
48 /* Margin of error for service status wait hints in milliseconds. */
\r
49 #define NSSM_WAITHINT_MARGIN 2000
\r
51 /* Methods used to try to stop the application. */
\r
52 #define NSSM_STOP_METHOD_CONSOLE (1 << 0)
\r
53 #define NSSM_STOP_METHOD_WINDOW (1 << 1)
\r
54 #define NSSM_STOP_METHOD_THREADS (1 << 2)
\r
55 #define NSSM_STOP_METHOD_TERMINATE (1 << 3)
\r
57 /* Startup types. */
\r
58 #define NSSM_STARTUP_AUTOMATIC 0
\r
59 #define NSSM_STARTUP_DELAYED 1
\r
60 #define NSSM_STARTUP_MANUAL 2
\r
61 #define NSSM_STARTUP_DISABLED 3
\r
64 #define NSSM_EXIT_RESTART 0
\r
65 #define NSSM_EXIT_IGNORE 1
\r
66 #define NSSM_EXIT_REALLY 2
\r
67 #define NSSM_EXIT_UNCLEAN 3
\r
68 #define NSSM_NUM_EXIT_ACTIONS 4
\r
70 /* How many milliseconds to wait before updating service status. */
\r
71 #define NSSM_SERVICE_STATUS_DEADLINE 20000
\r