summaryrefslogtreecommitdiff
path: root/ACE/ace/NT_Service.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-03-09 13:31:46 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2021-03-09 13:31:46 +0100
commit317dd62b7112b590efe99283ceb4b2e5e5649884 (patch)
tree4df9cfc065c67e616010437b483dd97d2aba717b /ACE/ace/NT_Service.h
parent60d97734bef3939bb7ed54170fbcf9a1b459b496 (diff)
downloadATCD-317dd62b7112b590efe99283ceb4b2e5e5649884.tar.gz
Documentation, layout, C++11 changes
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.