]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/app.h
Committing in .
[wxWidgets.git] / include / wx / app.h
index 0e00618dbe4761b4dcc6dfe1ef9dc4dc6aa9eb51..b3715a2c8a0f76e5474da8400a685729d44b6496 100644 (file)
@@ -100,7 +100,7 @@ public:
         // value of this method.
         //
         // Override: often.
-    virtual int OnExit() { return 0; }
+    virtual int OnExit();
 
         // called when a fatal exception occurs, this function should take care
         // not to do anything which might provoke a nested exception! It may be
@@ -232,6 +232,9 @@ public:
     static wxAppInitializerFunction GetInitializerFunction()
         { return m_appInitFn; }
 
+    // process all events in the wxPendingEvents list
+    virtual void ProcessPendingEvents();
+
     // access to the command line arguments
     int      argc;
     wxChar **argv;
@@ -353,7 +356,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__)
+#if defined(__AIX__) || defined(__HPUX__) || defined( __VMS__ )
     #define IMPLEMENT_WXWIN_MAIN \
         extern int wxEntry( int argc, char *argv[] ); \
         int main(int argc, char *argv[]) { return wxEntry(argc, argv); }