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
This commit is contained in:
Dimitri Schoolwerth 2005-02-14 14:48:35 +00:00
parent e06a429949
commit 7722d490f2

View File

@ -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 <io.h> // 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