From: Ove Kaaven Date: Fri, 23 Jul 1999 09:36:38 +0000 (+0000) Subject: Add wxFopen, wxFreopen, wxStrftime X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/e385b3ff37155cd02bd3a66d555dc48d337afb76 Add wxFopen, wxFreopen, wxStrftime git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3092 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/wxchar.h b/include/wx/wxchar.h index a26fcb502c..7e05283622 100644 --- a/include/wx/wxchar.h +++ b/include/wx/wxchar.h @@ -530,6 +530,8 @@ WXDLLEXPORT size_t wxStrxfrm(wxChar *dest, const wxChar *src, size_t n); #ifdef wxNEED_WX_STDIO_H #include #include +WXDLLEXPORT FILE * wxFopen(const wxChar *path, const wxChar *mode); +WXDLLEXPORT FILE * wxFreopen(const wxChar *path, const wxChar *mode, FILE *stream); WXDLLEXPORT int wxPrintf(const wxChar *fmt, ...); WXDLLEXPORT int wxVprintf(const wxChar *fmt, va_list argptr); WXDLLEXPORT int wxFprintf(FILE *stream, const wxChar *fmt, ...); @@ -551,5 +553,9 @@ WXDLLEXPORT wxChar * wxGetenv(const wxChar *name); WXDLLEXPORT int wxSystem(const wxChar *psz); #endif +#ifdef wxNEED_WX_TIME_H +WXDLLEXPORT size_t wxStrftime(wxChar *s, size_t max, const wxChar *fmt, const struct tm *tm); +#endif + #endif //_WX_WXCHAR_H_