X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/45f410f2278c9833187636b3e47b5797e80c934f..2b9a7d4cc2f5f55df3d83f7cf2160cf9a509a4f2:/src/msw/mslu.cpp diff --git a/src/msw/mslu.cpp b/src/msw/mslu.cpp index cdd08914c8..c830ecf70e 100644 --- a/src/msw/mslu.cpp +++ b/src/msw/mslu.cpp @@ -23,9 +23,26 @@ #ifndef WX_PRECOMP #include "wx/defs.h" + #include "wx/utils.h" #endif //------------------------------------------------------------------------ +// Check for use of MSLU +//------------------------------------------------------------------------ + +#if wxUSE_BASE + +bool WXDLLIMPEXP_BASE wxUsingUnicowsDll() +{ +#if wxUSE_UNICODE_MSLU + return (wxGetOsVersion() == wxWIN95); +#else + return false; +#endif +} + +#endif // wxUSE_BASE + #if wxUSE_UNICODE_MSLU @@ -102,7 +119,7 @@ static void wxFixOPENFILENAME(LPOPENFILENAME ofn) if ( (ofn->Flags & OFN_ALLOWMULTISELECT) && ofn->lpstrFile[ofn->nFileOffset-1] != wxT('\0') ) { - if ( wxDirExists(ofn->lpstrFile) ) + if ( wxPathExists(ofn->lpstrFile) ) { // 1st component is dir => multiple files selected ofn->nFileOffset = wxStrlen(ofn->lpstrFile)+1; @@ -152,6 +169,14 @@ WXDLLIMPEXP_BASE int wxMSLU__tremove(const wxChar *name) return _tremove(name); } +WXDLLIMPEXP_BASE FILE* wxMSLU__tfopen(const wxChar *name,const wxChar* mode) +{ + if ( wxUsingUnicowsDll() ) + return fopen(wxConvFile.cWX2MB(name),wxConvFile.cWX2MB(mode)); + else + return _tfopen(name,mode); +} + #if defined( __VISUALC__ ) \ || ( defined(__MINGW32__) && wxCHECK_W32API_VERSION( 0, 5 ) ) \ || ( defined(__MWERKS__) && defined(__WXMSW__) ) \