X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2679196c7e7e919d4a15bec7d931a054e62c413f..e5d4ef7410d597bdf6d426ceedc656dbefd69e90:/src/msw/mslu.cpp?ds=sidebyside diff --git a/src/msw/mslu.cpp b/src/msw/mslu.cpp index 87b44207d0..eba45e13d7 100644 --- a/src/msw/mslu.cpp +++ b/src/msw/mslu.cpp @@ -23,8 +23,27 @@ #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 //------------------------------------------------------------------------ @@ -199,6 +218,14 @@ WXDLLIMPEXP_BASE int wxMSLU__wstat(const wxChar *name, struct _stat *buffer) return _wstat(name, buffer); } +WXDLLIMPEXP_BASE int wxMSLU__wstati64(const wxChar *name, struct _stati64 *buffer) +{ + if ( wxUsingUnicowsDll() ) + return _stati64((const char*)wxConvFile.cWX2MB(name), buffer); + else + return _wstati64(name, buffer); +} + #endif // compilers having wopen() &c #endif // wxUSE_BASE