From: Vadim Zeitlin Date: Sun, 10 Dec 2006 15:35:41 +0000 (+0000) Subject: GetLongPath() should just do nothing under CE as there are no short/long paths there... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b517351bc5a742c684b587ca46ad341700330020 GetLongPath() should just do nothing under CE as there are no short/long paths there (patch 1612271) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43899 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/filename.cpp b/src/common/filename.cpp index 8ec78cad96..234ac80138 100644 --- a/src/common/filename.cpp +++ b/src/common/filename.cpp @@ -1793,7 +1793,7 @@ wxString wxFileName::GetLongPath() const wxString pathOut, path = GetFullPath(); -#if defined(__WIN32__) && !defined(__WXMICROWIN__) +#if defined(__WIN32__) && !defined(__WXWINCE__) && !defined(__WXMICROWIN__) #if wxUSE_DYNAMIC_LOADER typedef DWORD (WINAPI *GET_LONG_PATH_NAME)(const wxChar *, wxChar *, DWORD);