From: Guillermo Rodriguez Garcia Date: Wed, 12 Jan 2000 01:13:25 +0000 (+0000) Subject: Added missing WXDLLEXPORTs X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/24e148adbe79d7c911086f5d4fa46e94d7ced003 Added missing WXDLLEXPORTs git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5349 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/datetime.h b/include/wx/datetime.h index ce50b160a6..d1ded5d9a4 100644 --- a/include/wx/datetime.h +++ b/include/wx/datetime.h @@ -397,7 +397,7 @@ public: // NB: this struct should always be kept normalized (i.e. mon should // be < 12, 1 <= day <= 31 &c), so use AddMonths(), AddDays() // instead of modifying the member fields directly! - struct Tm + struct WXDLLEXPORT Tm { wxDateTime_t msec, sec, min, hour, mday; Month mon; diff --git a/include/wx/stream.h b/include/wx/stream.h index e4a184619e..a6ab789df5 100644 --- a/include/wx/stream.h +++ b/include/wx/stream.h @@ -265,7 +265,7 @@ protected: // wxBufferedStreams // --------------------------------------------------------------------------- -class wxBufferedInputStream: public wxFilterInputStream +class WXDLLEXPORT wxBufferedInputStream: public wxFilterInputStream { public: wxBufferedInputStream(wxInputStream& stream); @@ -288,7 +288,7 @@ protected: wxStreamBuffer *m_i_streambuf; }; -class wxBufferedOutputStream: public wxFilterOutputStream +class WXDLLEXPORT wxBufferedOutputStream: public wxFilterOutputStream { public: wxBufferedOutputStream(wxOutputStream& stream);