summaryrefslogtreecommitdiff
path: root/ace/Logging_Strategy.h
diff options
context:
space:
mode:
authorbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-08-16 03:59:01 +0000
committerbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-08-16 03:59:01 +0000
commitc96134613dc154686093cea36e7a6419b1cec0c0 (patch)
tree616f19b884a0616eef38ca7f3080a136fbb8349e /ace/Logging_Strategy.h
parentaa62e3ff911ae03c1124cea3d8180ad3bc61942c (diff)
downloadATCD-c96134613dc154686093cea36e7a6419b1cec0c0.tar.gz
ChangeLogTag:Tue Aug 15 20:54:14 2000 Darrell Brunsch <brunsch@uci.edu>
Diffstat (limited to 'ace/Logging_Strategy.h')
-rw-r--r--ace/Logging_Strategy.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ace/Logging_Strategy.h b/ace/Logging_Strategy.h
index 0e3ab9f623f..158cfcbd394 100644
--- a/ace/Logging_Strategy.h
+++ b/ace/Logging_Strategy.h
@@ -50,7 +50,7 @@ public:
ACE_Logging_Strategy (void);
// Constructor.
- virtual int init (int argc, char *argv[]);
+ virtual int init (int argc, ACE_TCHAR *argv[]);
// Dynamic linking initialization hook.
virtual int fini (void);
@@ -61,17 +61,17 @@ public:
// size exceeds <max_size_>, the current logfile is closed, saved to
// logfile.old, and a new logfile is reopened.
- int parse_args (int argc, char *argv[]);
+ int parse_args (int argc, ACE_TCHAR *argv[]);
// Parse svc.conf arguments.
private:
- void tokenize (char *flag_string);
+ void tokenize (ACE_TCHAR *flag_string);
// Tokenize to set all the flags
u_long flags_;
// Flags we keep track of.
- char *filename_;
+ ACE_TCHAR *filename_;
// File name we're logging to.
int wipeout_logfile_;