]> git.saurik.com Git - wxWidgets.git/commitdiff
Added missing WXDLLEXPORTs
authorGuillermo Rodriguez Garcia <guille@iies.es>
Wed, 12 Jan 2000 01:13:25 +0000 (01:13 +0000)
committerGuillermo Rodriguez Garcia <guille@iies.es>
Wed, 12 Jan 2000 01:13:25 +0000 (01:13 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5349 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/datetime.h
include/wx/stream.h

index ce50b160a6505727ea6a74726a2fc43c85deaf30..d1ded5d9a4c934095f3d77e153bf922cf860849e 100644 (file)
@@ -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;
index e4a184619e089bc9543f1a1eea009cb6397430b3..a6ab789df508bd878b99efccbfd9d8598002ffeb 100644 (file)
@@ -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);