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