diff options
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_; |