fix Borland _stat needed for filedlgg.cpp in univ mode

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@49998 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Chris Elliott
2007-11-16 17:19:37 +00:00
parent 5b9b0810cc
commit 7d4f9d70c8

View File

@@ -326,8 +326,12 @@ enum wxFileKind
#if defined(__OS2__) && defined(__WATCOMC__)
#define wxStat _stat
#else
#define wxStat wxPOSIX_IDENT(stat)
#endif
#if defined (__BORLANDC__)
#define wxStat _stat //wxPOSIX_IDENT(stat)
#else
#define wxStat wxPOSIX_IDENT(stat)
#endif // !borland
#endif // !watcom
#endif
#endif // wxUSE_UNICODE/!wxUSE_UNICODE