From 7722d490f224d8f292f27fd90b1f42a00e20da8b Mon Sep 17 00:00:00 2001 From: Dimitri Schoolwerth Date: Mon, 14 Feb 2005 14:48:35 +0000 Subject: [PATCH] fixed Cygwin compilation (there's no _get_osfhandle) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32036 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/filefn.h | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/include/wx/filefn.h b/include/wx/filefn.h index 976292adb9..a42adcc9c6 100644 --- a/include/wx/filefn.h +++ b/include/wx/filefn.h @@ -352,9 +352,15 @@ enum wxFileKind #endif #endif // platforms -#if defined __WXMSW__ && !defined __WXWINCE__ +#if defined __WXMSW__ && !defined __WXWINCE__ // get the HANDLE associated with a file descriptor - inline HANDLE wxGetOSFHandle(int fd) { return (HANDLE)_get_osfhandle(fd); } +# ifdef __CYGWIN__ +# include "wx/msw/private.h" // for HANDLE +# include // for get_osfhandle() + inline HANDLE wxGetOSFHandle(int fd) { return (HANDLE) get_osfhandle(fd); } +# else + inline HANDLE wxGetOSFHandle(int fd) { return (HANDLE) _get_osfhandle(fd); } +# endif #endif #if defined(__VISAGECPP__) && __IBMCPP__ >= 400 -- 2.45.2