From 36777af9e0d6e790027d3dda46c6898954439e5e Mon Sep 17 00:00:00 2001 From: Ove Kaaven Date: Sat, 8 Apr 2000 15:47:47 +0000 Subject: [PATCH] Fallback prototypes for wxRemove and wxRename git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7089 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/wxchar.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/wx/wxchar.h b/include/wx/wxchar.h index b4b8d32913..6e6e875c54 100644 --- a/include/wx/wxchar.h +++ b/include/wx/wxchar.h @@ -610,6 +610,8 @@ WXDLLEXPORT size_t wxStrxfrm(wxChar *dest, const wxChar *src, size_t n); # include WXDLLEXPORT FILE * wxFopen(const wxChar *path, const wxChar *mode); WXDLLEXPORT FILE * wxFreopen(const wxChar *path, const wxChar *mode, FILE *stream); +WXDLLEXPORT int wxRemove(const wxChar *path); +WXDLLEXPORT int wxRename(const wxChar *oldpath, const wxChar *newpath); WXDLLEXPORT int wxPrintf(const wxChar *fmt, ...); WXDLLEXPORT int wxVprintf(const wxChar *fmt, va_list argptr); WXDLLEXPORT int wxFprintf(FILE *stream, const wxChar *fmt, ...);