From: Julian Smart Date: Tue, 17 May 2005 12:09:01 +0000 (+0000) Subject: Wine fix X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/80b1db47a6a86a9e6449f2d41d3353b122f4391a Wine fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34094 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/filefn.cpp b/src/common/filefn.cpp index afc6b6705e..0df4b475a0 100644 --- a/src/common/filefn.cpp +++ b/src/common/filefn.cpp @@ -79,9 +79,6 @@ #if defined __MWERKS__ || defined __CYGWIN__ #include #endif - #if defined __WINE__ - extern "C" { long _get_osfhandle(int); } - #endif #endif // __WINDOWS__ #if defined(__VMS__) @@ -1927,7 +1924,7 @@ bool wxMatchWild( const wxString& pat, const wxString& text, bool dot_special ) // wxFileKind wxGetFileKind(int fd) { -#if defined __WXMSW__ && !defined __WXWINCE__ && defined wxGetOSFHandle +#if defined __WXMSW__ && !defined __WXWINCE__ && defined wxGetOSFHandle && !defined(__WINE__) switch (::GetFileType(wxGetOSFHandle(fd)) & ~FILE_TYPE_REMOTE) { case FILE_TYPE_CHAR: