blob: 99e1c75334c208129f06b15bfb5c9a70f08652f1 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef WIN32SERVICE_H
#define WIN32SERVICE_H
/* Hook for win32service.cpp to exit properly with the service specific error code */
void SetServiceStopped(int status);
/* Marks the service as running, not called until the config is parsed */
void SetServiceRunning();
#endif
|