pc 2 mac conversion for file operations

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21647 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2003-07-04 19:52:34 +00:00
parent 22cf5eef64
commit 5e0d7b6bce
2 changed files with 45 additions and 0 deletions

View File

@@ -51,6 +51,10 @@
using namespace std ;
#endif
#ifdef __WXMAC__
#include "wx/mac/private.h"
#endif
#if wxUSE_WCHAR_T
size_t WXDLLEXPORT wxMB2WC(wchar_t *buf, const char *psz, size_t n)
{
@@ -1195,6 +1199,28 @@ WXDLLEXPORT long int wxStrtol(const wxChar *nptr, wxChar **endptr, int base)
}
#endif // wxNEED_WX_STRING_H
#if defined(__WXMAC__) && !defined(__DARWIN__)
WXDLLEXPORT FILE * wxFopen(const wxChar *path, const wxChar *mode)
{
return fopen( wxMacStringToCString(path), mode );
}
WXDLLEXPORT FILE * wxFreopen(const wxChar *path, const wxChar *mode, FILE *stream)
{
return freopen( wxMacStringToCString(path), mode, stream );
}
WXDLLEXPORT int wxRemove(const wxChar *path)
{
return remove( wxMacStringToCString(path) );
}
WXDLLEXPORT int wxRename(const wxChar *oldpath, const wxChar *newpath)
{
return rename( wxMacStringToCString(oldpath), wxMacStringToCString(newpath) );
}
#endif
#ifdef wxNEED_WX_STDIO_H
WXDLLEXPORT FILE * wxFopen(const wxChar *path, const wxChar *mode)
{