summaryrefslogtreecommitdiff
path: root/ace/Naming_Context.h
diff options
context:
space:
mode:
authorirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1996-12-10 08:45:20 +0000
committerirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1996-12-10 08:45:20 +0000
commit7db29418e44bdce4e3df96493b852118cdd82a4a (patch)
tree4e7c3861e67804fbca3da1d49652aa036f0edf31 /ace/Naming_Context.h
parent3d462be371ad3548e4d2d68abf4f95372e7c529f (diff)
downloadATCD-7db29418e44bdce4e3df96493b852118cdd82a4a.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/Naming_Context.h')
-rw-r--r--ace/Naming_Context.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/ace/Naming_Context.h b/ace/Naming_Context.h
index 4198b786f63..27cb8ab0b5f 100644
--- a/ace/Naming_Context.h
+++ b/ace/Naming_Context.h
@@ -264,16 +264,16 @@ public:
const char *nameserver_host (void);
// = Set/Get name space directory
- void namespace_dir (const char *dir);
- const char *namespace_dir (void);
+ void namespace_dir (LPCTSTR dir);
+ LPCTSTR namespace_dir (void);
// = Set/Get process name
- void process_name (const char *dir);
- const char *process_name (void);
+ void process_name (LPCTSTR dir);
+ LPCTSTR process_name (void);
// = Set/Get database name
- void database (const char *db);
- const char *database (void);
+ void database (LPCTSTR);
+ LPCTSTR database (void);
// = Set/Get base address of the underlying allocator
void base_address (char *address);
@@ -298,13 +298,13 @@ private:
const char *nameserver_host_;
// Hostname of nameserver.
- const char *namespace_dir_;
+ LPCTSTR namespace_dir_;
// Directory to hold name_bindings.
- const char *process_name_;
+ LPCTSTR process_name_;
// Name of this process.
- const char *database_;
+ LPCTSTR database_;
// Name of the database that stores the name/value/type bindings.
char *base_address_;