summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/wolf/service/service.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/include/wolf/service/service.h b/include/wolf/service/service.h
index 04b5057..2585723 100644
--- a/include/wolf/service/service.h
+++ b/include/wolf/service/service.h
@@ -43,19 +43,16 @@
extern "C" {
#endif
-extern SERVICE_STATUS_HANDLE service_status_handle;
-extern SERVICE_STATUS service_status;
-extern HANDLE service_stop_event;
-
/**
* @brief structure to fill out when creating a Windows service.
*/
typedef struct wolf_service_params_t {
LPCTSTR service_name; /**< internal name of the service (for instance for
- 'net start <service_name>') */
+ 'net start "service_name"') */
LPCTSTR service_display_name; /**< the displayed name of the service (for instance
- shown in the event log viewer application) */
- LPCTSTR service_description; /**< the description (as shown in the service control */
+ shown in the service control application) */
+ LPCTSTR service_description; /**< the description (as shown in the service control
+ application) */
} wolf_service_params_t;
/**