summaryrefslogtreecommitdiff
path: root/ace/Service_Repository.h
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-03-16 07:31:00 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-03-16 07:31:00 +0000
commitf18c619e3fd32fd10bd2094e4a392637a7b28e1b (patch)
treeff00be9a1875bec52f1e1d49930696c081c54eb1 /ace/Service_Repository.h
parent25a0c9ae091fe397acabb4fbb7a9e46dfb846d61 (diff)
downloadATCD-f18c619e3fd32fd10bd2094e4a392637a7b28e1b.tar.gz
CE stuff.
Diffstat (limited to 'ace/Service_Repository.h')
-rw-r--r--ace/Service_Repository.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/ace/Service_Repository.h b/ace/Service_Repository.h
index 91af367e9d3..b732db5afdf 100644
--- a/ace/Service_Repository.h
+++ b/ace/Service_Repository.h
@@ -64,7 +64,7 @@ public:
int insert (const ACE_Service_Type *);
// Insert a new service record.
- int find (const char name[],
+ int find (const ASYS_TCHAR name[],
const ACE_Service_Type **srp = 0,
int ignore_suspended = 1);
// Locate an entry with <name> in the table. If <ignore_suspended>
@@ -74,14 +74,14 @@ public:
// If <name> is found, but it is suspended and the caller wants to
// ignore suspended services a -2 is returned.
- int remove (const char[]);
+ int remove (const ASYS_TCHAR[]);
// Remove an existing service record.
// = Liveness control
- int resume (const char[], const ACE_Service_Type ** = 0);
+ int resume (const ASYS_TCHAR[], const ACE_Service_Type ** = 0);
// Resume a service record.
- int suspend (const char[], const ACE_Service_Type ** = 0);
+ int suspend (const ASYS_TCHAR[], const ACE_Service_Type ** = 0);
// Suspend a service record.
int current_size (void);
@@ -97,7 +97,7 @@ public:
// Declare the dynamic allocation hooks.
private:
- int find_i (const char service_name[],
+ int find_i (const ASYS_TCHAR service_name[],
const ACE_Service_Type ** = 0,
int ignore_suspended = 1);
// Locates <service_name>. Must be called without locks being