//// Initialize bool wxApp::Initialize(int& argc, wxChar **argv) { if ( !wxAppBase::Initialize(argc, argv) ) return false; // ensure that base cleanup is done if we return too early wxCallBaseCleanup callBaseCleanup(this); #if !defined(__WXMICROWIN__) InitCommonControls(); #endif // !defined(__WXMICROWIN__) #if defined(__SMARTPHONE__) || defined(__POCKETPC__) SHInitExtraControls(); #endif #ifndef __WXWINCE__ // Don't show a message box if a function such as SHGetFileInfo // fails to find a device. SetErrorMode(SEM_FAILCRITICALERRORS|SEM_NOOPENFILEERRORBOX); #endif wxOleInitialize(); #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__) wxSetKeyboardHook(true); #endif callBaseCleanup.Dismiss(); return true; }
//// Initialize bool wxApp::Initialize(int& argc_, wxChar **argv_) { if ( !wxAppBase::Initialize(argc_, argv_) ) return false; // ensure that base cleanup is done if we return too early wxCallBaseCleanup callBaseCleanup(this); #if !defined(__WXMICROWIN__) InitCommonControls(); #endif // !defined(__WXMICROWIN__) #if defined(__SMARTPHONE__) || defined(__POCKETPC__) SHInitExtraControls(); #endif wxOleInitialize(); #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__) wxSetKeyboardHook(true); #endif callBaseCleanup.Dismiss(); return true; }
wxClipboard::wxClipboard() { #if wxUSE_OLE_CLIPBOARD wxOleInitialize(); #endif m_clearOnExit = false; m_isOpened = false; }
wxClipboard::wxClipboard() { #if wxUSE_OLE_CLIPBOARD wxOleInitialize(); #endif m_lastDataObject = NULL; m_isOpened = false; }
//// Initialize bool wxApp::Initialize(int& argc_, wxChar **argv_) { if ( !wxAppBase::Initialize(argc_, argv_) ) return false; // ensure that base cleanup is done if we return too early wxCallBaseCleanup callBaseCleanup(this); InitCommonControls(); wxOleInitialize(); wxSetKeyboardHook(true); callBaseCleanup.Dismiss(); return true; }