diff options
Diffstat (limited to 'win/win32service.cpp')
-rw-r--r-- | win/win32service.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/win/win32service.cpp b/win/win32service.cpp index e75b2eeba..ef2e0f3a4 100644 --- a/win/win32service.cpp +++ b/win/win32service.cpp @@ -43,6 +43,7 @@ struct Commandline /* A function pointer for dynamic linking tricks */ SETSERVDESC ChangeServiceConf; +/* Returns true if this program is running as a service, false if it is running interactive */ bool IsAService() { USEROBJECTFLAGS uoflags; @@ -143,7 +144,7 @@ void terminateService(int code, int wincode) return; } -/* In windows we hook this to exit() */ +/* In windows we hook this to InspIRCd::Exit() */ void SetServiceStopped(int status) { if (!IsAService()) |