summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2009-03-28 09:37:17 +0100
committerAndreas Baumann <abaumann@yahoo.com>2009-03-28 09:37:17 +0100
commitdcf953e4a7ab03dade60ef2b36e207d83beaf1b9 (patch)
tree41cb20018c65ae3f1cbcda4db5eeaf623a544c06 /include
parent535929eb7d44d7fd86da3832434da3d6d5256c13 (diff)
downloadwolfbones-dcf953e4a7ab03dade60ef2b36e207d83beaf1b9.tar.gz
wolfbones-dcf953e4a7ab03dade60ef2b36e207d83beaf1b9.tar.bz2
removed some old exported stuff
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;
/**