summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
b6e2edd)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23216
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
-IMPLEMENT_APP_NO_THEMES(XmlResApp)
+IMPLEMENT_APP_CONSOLE(XmlResApp)
// be in your main program (e.g. hello.cpp). Now IMPLEMENT_APP should add this
// code if required.
// be in your main program (e.g. hello.cpp). Now IMPLEMENT_APP should add this
// code if required.
+#define IMPLEMENT_WXWIN_MAIN_CONSOLE \
+ int main(int argc, char **argv) { return wxEntry(argc, argv); }
+
#if !wxUSE_GUI || !defined(__WXMSW__)
#define IMPLEMENT_WXWIN_MAIN \
#if !wxUSE_GUI || !defined(__WXMSW__)
#define IMPLEMENT_WXWIN_MAIN \
- int main(int argc, char **argv) { return wxEntry(argc, argv); }
+ IMPLEMENT_WXWIN_MAIN_CONSOLE
#elif defined(__WXMSW__)
// we need HINSTANCE declaration to define WinMain()
#include "wx/msw/wrapwin.h"
#elif defined(__WXMSW__)
// we need HINSTANCE declaration to define WinMain()
#include "wx/msw/wrapwin.h"
IMPLEMENT_APP_NO_THEMES(appname) \
IMPLEMENT_WX_THEME_SUPPORT
IMPLEMENT_APP_NO_THEMES(appname) \
IMPLEMENT_WX_THEME_SUPPORT
+// Same as IMPLEMENT_APP(), but for console applications.
+#define IMPLEMENT_APP_CONSOLE(appname) \
+ IMPLEMENT_APP_NO_MAIN(appname) \
+ IMPLEMENT_WXWIN_MAIN_CONSOLE
+
// this macro can be used multiple times and just allows you to use wxGetApp()
// function
#define DECLARE_APP(appname) extern appname& wxGetApp();
// this macro can be used multiple times and just allows you to use wxGetApp()
// function
#define DECLARE_APP(appname) extern appname& wxGetApp();
-IMPLEMENT_APP_NO_THEMES(XmlResApp)
+IMPLEMENT_APP_CONSOLE(XmlResApp)