]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/app.h
1. wxIcon/wxCursor change, wxGDIImage class added
[wxWidgets.git] / include / wx / app.h
index b3715a2c8a0f76e5474da8400a685729d44b6496..2ce1cad8bf8e2f86e4d73f096d4a503db0ab200d 100644 (file)
@@ -310,6 +310,9 @@ extern void WXDLLEXPORT wxExit();
 // Yield to other apps/messages
 extern bool WXDLLEXPORT wxYield();
 
+// Yield to other apps/messages
+extern void WXDLLEXPORT wxWakeUpIdle();
+
 // Post a message to the given eventhandler which will be processed during the
 // next event loop iteration
 inline void WXDLLEXPORT wxPostEvent(wxEvtHandler *dest, wxEvent& event)
@@ -356,7 +359,7 @@ public:
 // be in your main program (e.g. hello.cpp). Now IMPLEMENT_APP should add this
 // code if required.
 
-#if defined(__AIX__) || defined(__HPUX__) || defined( __VMS__ )
+#if defined(__AIX__) || defined(__HPUX__) || defined( __VMS__ ) || defined(__WXPM__)
     #define IMPLEMENT_WXWIN_MAIN \
         extern int wxEntry( int argc, char *argv[] ); \
         int main(int argc, char *argv[]) { return wxEntry(argc, argv); }