From: Michael Wetherell Date: Sun, 28 May 2006 17:40:20 +0000 (+0000) Subject: Export the event types. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/515a581d0dcf9f73d50d470ab3ff1715052fe0e1 Export the event types. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39383 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/power.h b/include/wx/power.h index e70fb6c215..b9ae9efc95 100644 --- a/include/wx/power.h +++ b/include/wx/power.h @@ -69,10 +69,10 @@ private: }; BEGIN_DECLARE_EVENT_TYPES() - DECLARE_EVENT_TYPE(wxEVT_POWER_SUSPENDING, 406) - DECLARE_EVENT_TYPE(wxEVT_POWER_SUSPENDED, 407) - DECLARE_EVENT_TYPE(wxEVT_POWER_SUSPEND_CANCEL, 408) - DECLARE_EVENT_TYPE(wxEVT_POWER_RESUME, 444) + DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_BASE, wxEVT_POWER_SUSPENDING, 406) + DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_BASE, wxEVT_POWER_SUSPENDED, 407) + DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_BASE, wxEVT_POWER_SUSPEND_CANCEL, 408) + DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_BASE, wxEVT_POWER_RESUME, 444) END_DECLARE_EVENT_TYPES() typedef void (wxEvtHandler::*wxPowerEventFunction)(wxPowerEvent&);