diff options
author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-04-10 19:59:37 +0000 |
---|---|---|
committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-04-10 19:59:37 +0000 |
commit | 3df4acfa816441fc28a95dee6d0191a927145d95 (patch) | |
tree | b5ae7ca44662cfd8e5c95f1826e4406021a606f5 /ace/NT_Service.i | |
parent | 60a5612b83d856fc0adc52b9f39fac9960ec9818 (diff) | |
download | ATCD-pre-subset.tar.gz |
This commit was manufactured by cvs2svn to create tag 'pre-subset'.pre-subset
Diffstat (limited to 'ace/NT_Service.i')
-rw-r--r-- | ace/NT_Service.i | 79 |
1 files changed, 0 insertions, 79 deletions
diff --git a/ace/NT_Service.i b/ace/NT_Service.i deleted file mode 100644 index 5a465066727..00000000000 --- a/ace/NT_Service.i +++ /dev/null @@ -1,79 +0,0 @@ -/* -*- C++ -*- */ -// $Id$ - -ACE_INLINE -ACE_NT_Service::ACE_NT_Service (DWORD start_timeout, - DWORD service_type, - DWORD controls_mask) : - start_time_(start_timeout), - svc_handle_(0), - svc_sc_handle_(0), - name_(0), - desc_(0), - host_(0) -{ - svc_status_.dwServiceType = service_type; - svc_status_.dwCurrentState = 0; - svc_status_.dwControlsAccepted = controls_mask; - svc_status_.dwWin32ExitCode = NO_ERROR; - svc_status_.dwServiceSpecificExitCode = 0; - svc_status_.dwCheckPoint = 0; -} - - -ACE_INLINE -ACE_NT_Service::ACE_NT_Service (const ACE_TCHAR *name, - const ACE_TCHAR *desc, - DWORD start_timeout, - DWORD service_type, - DWORD controls_mask) : - start_time_(start_timeout), - svc_handle_(0), - svc_sc_handle_(0), - name_(ACE::strnew(name)), - desc_(ACE::strnew(desc)), - host_(0) -{ - svc_status_.dwServiceType = service_type; - svc_status_.dwCurrentState = 0; - svc_status_.dwControlsAccepted = controls_mask; - svc_status_.dwWin32ExitCode = NO_ERROR; - svc_status_.dwServiceSpecificExitCode = 0; - svc_status_.dwCheckPoint = 0; -} - - -ACE_INLINE int -ACE_NT_Service::svc (void) -{ - return -1; -} - - -ACE_INLINE -const ACE_TCHAR * -ACE_NT_Service::name (void) const -{ - return name_; -} - -ACE_INLINE -const ACE_TCHAR * -ACE_NT_Service::desc (void) const -{ - return desc_; -} - -ACE_INLINE -const ACE_TCHAR * -ACE_NT_Service::host (void) const -{ - return host_; -} - -ACE_INLINE void -ACE_NT_Service::svc_handle(const SERVICE_STATUS_HANDLE new_svc_handle) -{ - this->svc_handle_ = new_svc_handle; - return; -} |