diff options
author | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-08-16 03:59:01 +0000 |
---|---|---|
committer | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-08-16 03:59:01 +0000 |
commit | 97f7263c8ffbe02c710353e07080be1c52d692db (patch) | |
tree | 616f19b884a0616eef38ca7f3080a136fbb8349e /ace/Logging_Strategy.h | |
parent | 2b48b9367e6005bf698fcd025d6e9bca14f1d3c4 (diff) | |
download | ATCD-97f7263c8ffbe02c710353e07080be1c52d692db.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.h | 8 |
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_; |