X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/28e5e577e4d26332a7ebdf7d1dc7492807fa1601..c26dba42b75b2c19df5834417ffbe330bc375b20:/include/wx/filefn.h diff --git a/include/wx/filefn.h b/include/wx/filefn.h index c59b78a015..eb714186e3 100644 --- a/include/wx/filefn.h +++ b/include/wx/filefn.h @@ -75,6 +75,7 @@ enum wxSeekMode #if defined( __VISUALC__ ) \ || ( defined(__MINGW32__) && !defined(__WINE__) && wxCHECK_W32API_VERSION( 0, 5 ) ) \ || ( defined(__MWERKS__) && defined(__WXMSW__) ) \ + || ( defined(__DMC__) && defined(__WXMSW__) ) \ || ( defined(__WATCOMC__) && defined(__WXMSW__) ) // functions #if defined(__BORLANDC__) || defined(__WATCOMC__) @@ -163,6 +164,9 @@ enum wxSeekMode #if defined(__MWERKS__) && defined(macintosh) #include #endif +#if defined(__DMC__) + typedef unsigned long mode_t; +#endif WXDLLIMPEXP_BASE int wxStat( const wxChar *file_name, wxStructStat *buf ); WXDLLIMPEXP_BASE int wxAccess( const wxChar *pathname, int mode ); WXDLLIMPEXP_BASE int wxOpen( const wxChar *pathname, int flags, mode_t mode );