summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2009-03-28 08:52:01 +0100
committerAndreas Baumann <abaumann@yahoo.com>2009-03-28 08:52:01 +0100
commit6f229e42fe0a5357f0bdcd06a3a792a5f7b30ab4 (patch)
tree9c259c2915a42c7ac535f1795caf4a6fe93bcedd /include
parent03d693a59e880e33e895b29f5cc1ff849c8945fe (diff)
downloadwolfbones-6f229e42fe0a5357f0bdcd06a3a792a5f7b30ab4.tar.gz
wolfbones-6f229e42fe0a5357f0bdcd06a3a792a5f7b30ab4.tar.bz2
added description of service
Diffstat (limited to 'include')
-rw-r--r--include/wolf/log/messages.h1
-rw-r--r--include/wolf/service/service.h3
2 files changed, 3 insertions, 1 deletions
diff --git a/include/wolf/log/messages.h b/include/wolf/log/messages.h
index 0d0aa70..a234d28 100644
--- a/include/wolf/log/messages.h
+++ b/include/wolf/log/messages.h
@@ -186,6 +186,7 @@
#define WOLF_MSG_SERVICE_CANT_DISPATCH_SERVICE WOLF_MSG_SERVICE_BASE+17
#define WOLF_MSG_SERVICE_CANT_REGISTER_CONSOLE_CTRL_HANDLER WOLF_MSG_SERVICE_BASE+18
#define WOLF_MSG_SERVICE_CONSOLE_CTRL_RECEIVED WOLF_MSG_SERVICE_BASE+19
+#define WOLF_MSG_SERVICE_CANT_SET_SERVICE_DESCRIPTION WOLF_MSG_SERVICE_BASE+20
#ifdef __cplusplus
extern "C" {
diff --git a/include/wolf/service/service.h b/include/wolf/service/service.h
index fbe811e..04b5057 100644
--- a/include/wolf/service/service.h
+++ b/include/wolf/service/service.h
@@ -53,8 +53,9 @@ extern HANDLE service_stop_event;
typedef struct wolf_service_params_t {
LPCTSTR service_name; /**< internal name of the service (for instance for
'net start <service_name>') */
- LPCTSTR service_name_descr; /**< the descriptive name of the service (for instance
+ 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 */
} wolf_service_params_t;
/**