From: Vadim Zeitlin Date: Tue, 14 Jul 1998 22:08:59 +0000 (+0000) Subject: off_t #define'd as _off_t for VC++ (it's not a standard type) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/eda3efe2f8298c29a440bc452b5f10506aec7429 off_t #define'd as _off_t for VC++ (it's not a standard type) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@269 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/stream.h b/include/wx/stream.h index b2a889a9bf..692d522305 100644 --- a/include/wx/stream.h +++ b/include/wx/stream.h @@ -20,6 +20,10 @@ #include #include +#ifdef _MSC_VER + #define off_t _off_t +#endif + /* * wxStream: base classes */