summaryrefslogtreecommitdiff
path: root/ACE/ace/NT_Service.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/NT_Service.h')
-rw-r--r--ACE/ace/NT_Service.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/ace/NT_Service.h b/ACE/ace/NT_Service.h
index 6e03aabd6b2..e1b03990333 100644
--- a/ACE/ace/NT_Service.h
+++ b/ACE/ace/NT_Service.h
@@ -126,7 +126,7 @@ public:
* ACE_Shared_Object. Default implementation sets the service status
* to SERVICE_STOPPED.
*/
- virtual int fini (void);
+ virtual int fini ();
/**
* The actual service implementation. This function need not be overridden
@@ -134,7 +134,7 @@ public:
* by subclasses when actually running the service. It is expected that
* this function will set the status to RUNNING.
*/
- virtual int svc (void);
+ virtual int svc ();
/**
* This function is called in response to a request from the Service
@@ -147,7 +147,7 @@ public:
* SERVICE_CONTROL_INTERROGATE: reports current status
* SERVICE_CONTROL_SHUTDOWN: same as SERVICE_CONTROL_STOP.
*/
- virtual void handle_control (DWORD control_code);
+ virtual void handle_control (DWORD control_code);
/// Set the svc_handle_ member. This is only a public function because
/// the macro-generated service function calls it.