From: Stefan Csomor Date: Sun, 20 Jan 2002 16:14:11 +0000 (+0000) Subject: new static structure for using the correct resource file (needed for shared lib) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/fa15551ceb2929d9cdbe253c992c26d50328642d new static structure for using the correct resource file (needed for shared lib) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13687 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/mac/app.h b/include/wx/mac/app.h index dff98e0bd5..c82ec80f85 100644 --- a/include/wx/mac/app.h +++ b/include/wx/mac/app.h @@ -156,6 +156,15 @@ public : DECLARE_EVENT_TABLE() }; +class WXDLLEXPORT wxStAppResource +{ +public : + wxStAppResource() ; + ~wxStAppResource() ; +private : + short m_currentRefNum ; +} ; + // TODO: add platform-specific arguments int WXDLLEXPORT wxEntry( int argc, char *argv[] , bool enterLoop = TRUE);