blob: b6639a49bfdb287f703a634b97d545a1348c495c (
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
|