DLL build fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41847 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-10-09 23:13:45 +00:00
parent 31189345e1
commit 943d32e1c6
2 changed files with 6 additions and 6 deletions

View File

@@ -28,15 +28,15 @@
class WXDLLIMPEXP_ADV wxAnimation; class WXDLLIMPEXP_ADV wxAnimation;
extern WXDLLEXPORT_DATA(wxAnimation) wxNullAnimation; extern WXDLLIMPEXP_DATA_ADV(wxAnimation) wxNullAnimation;
extern WXDLLEXPORT_DATA(const wxChar) wxAnimationCtrlNameStr[]; extern WXDLLIMPEXP_DATA_ADV(const wxChar) wxAnimationCtrlNameStr[];
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// wxAnimationBase // wxAnimationBase
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
class WXDLLEXPORT wxAnimationBase : public wxGDIObject class WXDLLIMPEXP_ADV wxAnimationBase : public wxGDIObject
{ {
public: public:
wxAnimationBase() {} wxAnimationBase() {}

View File

@@ -24,9 +24,9 @@
class WXDLLIMPEXP_ADV wxAnimationBase; class WXDLLIMPEXP_ADV wxAnimationBase;
class WXDLLIMPEXP_ADV wxAnimationPlayer; class WXDLLIMPEXP_ADV wxAnimationPlayer;
class WXDLLEXPORT wxImage; class WXDLLEXPORT wxImage;
class WXDLLEXPORT wxGIFDecoder; class WXDLLEXPORT wxGIFDecoder;
class WXDLLEXPORT wxAnimation; class WXDLLIMPEXP_ADV wxAnimation;
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------