]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/app.cpp
1. Pause()/Resume() implemented for wxMSW
[wxWidgets.git] / src / msw / app.cpp
index 76458c15a63439c7c5eac1590c041bf1b275d126..22e1baf8dfa6e2e8f43878eafced5c33a8cba404 100644 (file)
@@ -43,6 +43,9 @@
   #include "wx/resource.h"
 #endif
 
+#if wxUSE_DRAG_AND_DROP
+#include <ole2.h>
+#endif
 #include <string.h>
 #include <ctype.h>
 
     #define _DEBUG
   #endif
 
+  /* Need to undef new if including crtdbg.h */
+  #ifdef new
+  #undef new
+  #endif
+
   #include <crtdbg.h>
+
+  #if defined(__WXDEBUG__) && wxUSE_GLOBAL_MEMORY_OPERATORS && wxUSE_DEBUG_NEW_ALWAYS
+  #define new new(__FILE__,__LINE__)
+  #endif
+
 #endif
 
 extern char *wxBuffer;
@@ -117,6 +130,12 @@ long wxApp::sm_lastMessageTime = 0;
 
 bool wxApp::Initialize()
 {
+    // Some people may wish to use this, but
+    // probably it shouldn't be here by default.
+#ifdef __WXDEBUG__
+//    wxRedirectIOToConsole();
+#endif
+
     wxBuffer = new char[1500];
 
 #ifdef wxUSE_VC_CRTDBG
@@ -170,10 +189,12 @@ bool wxApp::Initialize()
         return FALSE;
     }
 */
-       
+
+#ifndef __GNUWIN32__
     // we need to initialize OLE library
     if ( FAILED(::OleInitialize(NULL)) )
       wxFatalError(_("Cannot initialize OLE"));
+#endif
 
 #if CTL3D
     if (!Ctl3dRegister(wxhInstance))
@@ -486,7 +507,9 @@ void wxApp::CleanUp()
   if ( wxDisableButtonBrush )
     ::DeleteObject( wxDisableButtonBrush ) ;
 
+#ifndef __GNUWIN32__
   ::OleUninitialize();
+#endif
 
 #if CTL3D
   Ctl3dUnregister(wxhInstance);