summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-18 16:46:36 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-18 16:46:36 +0000
commit6207a8884687110649f298db4a2c5da91d70cd5c (patch)
tree479edf8c6a715d477b99ffea260dcc2ad4a97cde
parent677da7e5c9dc39a0fc80994bb9ab49a60e03dc8e (diff)
downloadATCD-6207a8884687110649f298db4a2c5da91d70cd5c.tar.gz
Changed LPTCSTR to const ASYS_TCHAR.
-rw-r--r--ace/Service_Config.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/ace/Service_Config.h b/ace/Service_Config.h
index c60b3ec995a..9b068dbfca0 100644
--- a/ace/Service_Config.h
+++ b/ace/Service_Config.h
@@ -45,7 +45,7 @@ class ACE_Static_Svc_Descriptor
// Holds the information necessary to describe a statically linked
// Svc.
public:
- LPCTSTR name_;
+ const ASYS_TCHAR *name_;
// Name of the service.
int type_;
@@ -321,19 +321,19 @@ protected:
// <ACE_Service_Config>. Note that <argv[0]> is assumed to be the
// program name.
- // The arguments that are valid in a call to this method are
+ // The arguments that are valid in a call to this method are
// '-b' - Option to indicate that we should be a daemon
// '-d' - Turn on debugging mode
// '-f' - Option to read in the list of svc.conf file names
- // '-k' - Option to read a wide string where in the logger output can
- // be written
- // '-y' - Turn on the flag for a repository of statically
+ // '-k' - Option to read a wide string where in the logger output can
+ // be written
+ // '-y' - Turn on the flag for a repository of statically
// linked services
// '-n' - Need not have a repository of statically linked services
// '-S' - Option to read in the list of services on the command-line
// Please observe the difference between options '-f' that looks
// for a list of files and here a list of services.
-
+
static int start_daemon (void);
// Become a daemon.