From eda3efe2f8298c29a440bc452b5f10506aec7429 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 14 Jul 1998 22:08:59 +0000 Subject: [PATCH] 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 --- include/wx/stream.h | 4 ++++ 1 file changed, 4 insertions(+) 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 */ -- 2.45.2