fixed compilation of multilib dll

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21639 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2003-07-04 18:18:11 +00:00
parent 40a8832891
commit 4460b6c48b
5 changed files with 7 additions and 5 deletions

View File

@@ -77,7 +77,8 @@ protected:
}; };
WX_DECLARE_EXPORTED_OBJARRAY(wxHtmlBookRecord, wxHtmlBookRecArray); WX_DECLARE_USER_EXPORTED_OBJARRAY(wxHtmlBookRecord, wxHtmlBookRecArray,
WXDLLIMPEXP_HTML);
struct wxHtmlContentsItem struct wxHtmlContentsItem

View File

@@ -149,7 +149,8 @@ private:
#endif // 0 #endif // 0
}; };
WX_DECLARE_EXPORTED_OBJARRAY(wxFileTypeInfo, wxArrayFileTypeInfo); WX_DECLARE_USER_EXPORTED_OBJARRAY(wxFileTypeInfo, wxArrayFileTypeInfo,
WXDLLIMPEXP_BASE);
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// wxFileType: gives access to all information about the files of given type. // wxFileType: gives access to all information about the files of given type.

View File

@@ -21,7 +21,7 @@
// declare a linked list of modules // declare a linked list of modules
class wxModule; class wxModule;
WX_DECLARE_EXPORTED_LIST(wxModule, wxModuleList); WX_DECLARE_USER_EXPORTED_LIST(wxModule, wxModuleList, WXDLLIMPEXP_BASE);
// declaring a class derived from wxModule will automatically create an // declaring a class derived from wxModule will automatically create an
// instance of this class on program startup, call its OnInit() method and call // instance of this class on program startup, call its OnInit() method and call

View File

@@ -120,7 +120,7 @@ void wxHtmlWinAutoScrollTimer::Notify()
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
// item of history list // item of history list
class WXDLLEXPORT wxHtmlHistoryItem class WXDLLIMPEXP_HTML wxHtmlHistoryItem
{ {
public: public:
wxHtmlHistoryItem(const wxString& p, const wxString& a) {m_Page = p, m_Anchor = a, m_Pos = 0;} wxHtmlHistoryItem(const wxString& p, const wxString& a) {m_Page = p, m_Anchor = a, m_Pos = 0;}

View File

@@ -66,7 +66,7 @@ FORCE_LINK_ME(m_layout)
// array wxHtmlPrintout::m_PageBreaks of pagebreaks already set, and // array wxHtmlPrintout::m_PageBreaks of pagebreaks already set, and
// set a new one only if it's not in that array. // set a new one only if it's not in that array.
class WXDLLEXPORT wxHtmlPageBreakCell : public wxHtmlCell class wxHtmlPageBreakCell : public wxHtmlCell
{ {
public: public:
wxHtmlPageBreakCell() {} wxHtmlPageBreakCell() {}