コード例 #1
0
ファイル: oledoc1.cpp プロジェクト: jbeaurain/omaha_vs2010
COleDocument::~COleDocument()
{
	ASSERT_VALID(this);

#ifdef _DEBUG
	if (!m_docItemList.IsEmpty())
		TRACE(traceOle, 0, "Warning: destroying COleDocument with %d doc items.\n",
			m_docItemList.GetCount());
#endif

	// remove all doc-items from the list before shutting down the storage
	POSITION pos = GetStartPosition();
	while (pos != NULL)
	{
		CDocItem* pItem = GetNextItem(pos);
		ASSERT(pItem != NULL);
		delete pItem;
	}

	// release the hold on the document storage
	RELEASE(m_lpRootStg);
	CoTaskMemFree(m_ptd);

	AfxOleUnlockApp();
}
コード例 #2
0
ファイル: strcoll.cpp プロジェクト: jetlive/skiaming
CStringCollect::~CStringCollect()
{
	// To terminate the application when all objects created with
	//  with OLE automation, the destructor calls AfxOleUnlockApp.

	AfxOleUnlockApp();
}
コード例 #3
0
ファイル: clikpnt.cpp プロジェクト: jetlive/skiaming
CAutoClickPoint::~CAutoClickPoint()
{
    // To terminate the application when all objects created with
    //  with OLE automation, the destructor calls AfxOleUnlockApp.

    AfxOleUnlockApp();
}
コード例 #4
0
ファイル: SkinItemEdit.cpp プロジェクト: mengskysama/V8
CSkinItemEdit::~CSkinItemEdit()
{
	// 为了在用 OLE 自动化创建所有对象后终止应用程序,
	// 	析构函数调用 AfxOleUnlockApp。
	
	AfxOleUnlockApp();
}
コード例 #5
0
CDispSimple::~CDispSimple()
{
	// 为了在用 OLE 自动化创建所有对象后终止应用程序,
	// 	析构函数调用 AfxOleUnlockApp。
	
	AfxOleUnlockApp();
}
コード例 #6
0
ファイル: SkinItemSlider.cpp プロジェクト: mengskysama/V8
CSkinItemSlider::~CSkinItemSlider()
{
	// 为了在用 OLE 自动化创建所有对象后终止应用程序,
	// 	析构函数调用 AfxOleUnlockApp。
	
	AfxOleUnlockApp();
}
コード例 #7
0
ファイル: Calculate.cpp プロジェクト: uesoft/AutoPHS
CCalculate::~CCalculate()
{
	// To terminate the application when all objects created with
	// 	with OLE automation, the destructor calls AfxOleUnlockApp.
	
	AfxOleUnlockApp();
}
コード例 #8
0
ファイル: SkinWndBase.cpp プロジェクト: mengskysama/V8
CSkinWndBase::~CSkinWndBase()
{
	// 为了在用 OLE 自动化创建所有对象后终止应用程序,
	// 	析构函数调用 AfxOleUnlockApp。
	
	AfxOleUnlockApp();
}
コード例 #9
0
ファイル: olesvr2.cpp プロジェクト: rickerliang/OpenNT
COleServerItem::~COleServerItem()
{
	m_bAutoDelete = FALSE;  // no delete during destructor

	// release any advise holders
	RELEASE(m_lpOleAdviseHolder);
	RELEASE(m_lpDataAdviseHolder);

	ExternalDisconnect();

	// disconnect from the document
	COleServerDoc* pDoc = GetDocument();
	if (pDoc != NULL)
	{
		// remove external lock from it
		if (m_bNeedUnlock)
		{
			pDoc->LockExternal(FALSE, TRUE);
			m_bNeedUnlock = FALSE;
		}

		// reset m_pEmbeddedItem if destroying embedded item
		if (pDoc->m_pEmbeddedItem == this)
			pDoc->m_pEmbeddedItem = NULL;

		// remove from list
		pDoc->RemoveItem(this);
	}

	// cleanup any references
	AfxOleUnlockApp();
}
コード例 #10
0
ファイル: Spaceship.cpp プロジェクト: jiayuehua/InsideVC
CSpaceship::~CSpaceship()
{
    TRACE("CSpaceship dtor\n");
    // To terminate the application when all objects created with
    //   OLE automation, the destructor calls AfxOleUnlockApp.
    
    AfxOleUnlockApp();
}
コード例 #11
0
ファイル: DlgProxy.cpp プロジェクト: douzsh/douzsh
CEVDetectionDlgAutoProxy::~CEVDetectionDlgAutoProxy()
{
	// 为了在用 OLE 自动化创建所有对象后终止应用程序,
	// 	析构函数调用 AfxOleUnlockApp。
	//  除了做其他事情外,这还将销毁主对话框
	if (m_pDialog != NULL)
		m_pDialog->m_pAutoProxy = NULL;
	AfxOleUnlockApp();
}
コード例 #12
0
CMFC_ControlsDlgAutoProxy::~CMFC_ControlsDlgAutoProxy()
{
	// To terminate the application when all objects created with
	// 	with automation, the destructor calls AfxOleUnlockApp.
	//  Among other things, this will destroy the main dialog
	if (m_pDialog != NULL)
		m_pDialog->m_pAutoProxy = NULL;
	AfxOleUnlockApp();
}
コード例 #13
0
COpcC_Client::~COpcC_Client()
{
   AfxOleUnlockApp();
   if( opcServer.IsOk() )
      DoOpcDisconnect();
   testSink->Release(); // OLE should clean this up, but may not have time!
   callbackCP->Release();
   shutdownCP->Release();
   Sleep( 100 );
}
コード例 #14
0
ファイル: ComponentObj.cpp プロジェクト: dyao-vu/meta-core
CComponentObj::~CComponentObj()
{
	// To terminate the application when all objects created with
	// 	with OLE automation, the destructor calls AfxOleUnlockApp.

	ASSERT( registeractiveobjectret == 0 );
	GMEConsole::Console::gmeoleapp.Release();

	AfxOleUnlockApp();
}
コード例 #15
0
ファイル: text.cpp プロジェクト: jiayuehua/InsideVC
CText::~CText()
{
	// To terminate the application when all objects created with
	// 	with OLE automation, the destructor calls AfxOleUnlockApp.
	
	if(m_pchText != NULL) {
		delete [] m_pchText;
	}
	AfxOleUnlockApp();
}
コード例 #16
0
CBenubirdAutoProxy::~CBenubirdAutoProxy()
{
	g_strDBG.Empty();
	g_strDBG.Format(_T("------------------------------------- end AutoProxy1  %X"),this);
	OutputDebugString(g_strDBG);

	// To terminate the application when all objects created with
	// 	with automation, the destructor calls AfxOleUnlockApp.
	//  Among other things, this will destroy the main dialog
	if (m_pDialog != NULL)
		m_pDialog->m_pAutoProxy = NULL;
	AfxOleUnlockApp();
}
コード例 #17
0
ファイル: MainFrm.cpp プロジェクト: killbug2004/WSProf
void CMainFrame::OnClose()
{
	if( GetApp()->ComparisonRunning() )
		return;

	CChildFrame* const pFrame = DYNAMIC_DOWNCAST( CChildFrame, MDIGetActive() );

	if (CloseAll(0))
	{
		CMDIFrameWndEx::OnClose();

		// bombs away! - unlock the app from ole automation references - be like word.application and go away when UI is closed
		while (!AfxOleCanExitApp())
			AfxOleUnlockApp();
	}
}
コード例 #18
0
LONG CEventHandlerModule::Unlock()
{
	AfxOleUnlockApp();
	return 0;
}
コード例 #19
0
LONG CDistributedGameTreeServerModule::Unlock()
{
	AfxOleUnlockApp();
	return 0;
}
コード例 #20
0
ファイル: ReportObj.cpp プロジェクト: JackWangCUMT/SuperCxHMI
CReportObj::~CReportObj()
{
	AfxOleUnlockApp();
}
コード例 #21
0
ファイル: IEViewDoc.cpp プロジェクト: windrobin/kumpro
CDoc::~CDoc()
{
	AfxOleUnlockApp();
}
コード例 #22
0
CSTEditorDoc::~CSTEditorDoc ()
{
	AfxOleUnlockApp ();
}
COgreInMfcDoc::~COgreInMfcDoc()
{
	AfxOleUnlockApp();
}
コード例 #24
0
CMUSHclientDoc::~CMUSHclientDoc()
{
int i;

  // stop sounds playing, release sound buffers
  for (i = 0; i < MAX_SOUND_BUFFERS; i++)
    if (m_pDirectSoundSecondaryBuffer [i])
      {
      DWORD iStatus;
      if (SUCCEEDED (m_pDirectSoundSecondaryBuffer [i]->GetStatus (&iStatus)) &&
          (iStatus & DSBSTATUS_PLAYING))
        m_pDirectSoundSecondaryBuffer [i]->Stop ();

      m_pDirectSoundSecondaryBuffer [i]->Release ();
      }

  if (m_pTimerWnd)
    {
	  m_pTimerWnd->DestroyWindow();
	  delete m_pTimerWnd;
    m_pTimerWnd = NULL;
    }

  for (i = 0; i < 8; i++)  
    delete m_font [i];
  delete m_input_font;

  if (m_hNameLookup)
    WSACancelAsyncRequest (m_hNameLookup);  // cancel host name lookup in progress

  delete [] m_pGetHostStruct;   // delete buffer used by host name lookup

  delete m_MapFailureRegexp;    // delete regexp structure for mapping failures

	if (m_pSocket)
	{

    ShutDownSocket (*m_pSocket);

    delete m_pSocket;
    m_pSocket = NULL;

    }

	if (m_pChatListenSocket)
	{

    ShutDownSocket (*m_pChatListenSocket);

    delete m_pChatListenSocket;
    m_pChatListenSocket = NULL;

    }

  // UDP listening sockets
  for (map<int, UDPsocket *>::iterator udpSocketIterator = m_UDPsocketMap.begin ();
       udpSocketIterator != m_UDPsocketMap.end ();
       udpSocketIterator++)
      delete udpSocketIterator->second;

  // delete chat sessions

  DELETE_LIST (m_ChatList);

  // delete plugins

  // we have to do it this way, because otherwise if a plugin attempts to access the
  // plugin list (eg. BroadcastPlugin, Trace) during the delete operation, then it
  // may call a plugin that was deleted a moment ago, but is still in the list.

   for (PluginListIterator pit = m_PluginList.begin (); 
        pit != m_PluginList.end ();
        pit =  m_PluginList.erase (pit))    // erase from list and get next one
    delete *pit;  // delete *this* one

  CloseLog ();    // this writes out the log file postamble as well

// delete triggers
       
  DELETE_MAP (m_TriggerMap, CTrigger); 

// delete aliass

  DELETE_MAP (m_AliasMap, CAlias); 

// delete lines list

  DELETE_LIST (m_LineList);

// delete timer map

  DELETE_MAP (m_TimerMap, CTimer); 
  
// delete variables map

  DELETE_MAP (m_VariableMap, CVariable); 

// delete Element map

  DELETE_MAP (m_CustomElementMap, CElement); 

// delete active tags list

  DELETE_LIST (m_ActiveTagList);

// delete actions list

  DELETE_LIST (m_ActionList);


// get rid of our positions array

  delete [] m_pLinePositions;

// one less document

  gdoccount--;

// update activity window

  App.m_bUpdateActivity = TRUE;

// ****************** release scripting stuff

  DisableScripting ();

  if (!bWine)
  	AfxOleUnlockApp();        // not needed?

  // free compression stuff

  if (m_CompressOutput)
    free (m_CompressOutput);
  if (m_CompressInput)
    free (m_CompressInput);

  // don't wrap up if not initialised
  if (m_bCompressInitOK)
    inflateEnd (&m_zCompress);

  // don't need to know what the configuration was any more
  DeleteConfigurationArrays ();

  // delete our arrays
  for (tStringMapOfMaps::iterator it = m_Arrays.begin (); 
       it != m_Arrays.end ();
       it++)
         {
         tStringToStringMap * m = it->second;
         m->clear ();
         delete m;
         }

  // destroy accelerator table, if we had one
  if (m_accelerator)
    DestroyAcceleratorTable (m_accelerator);

  // if they loaded a special font, get rid of it
  RemoveSpecialFonts ();

#ifdef PANE

  // get rid of owned panes

  safe_for_each (m_PaneMap.begin (), m_PaneMap.end (), closepane);
#endif // PANE

  // delete MiniWindow map

  for (MiniWindowMapIterator mwit = m_MiniWindows.begin (); 
       mwit != m_MiniWindows.end ();
       mwit++)
         delete mwit->second;

  m_MiniWindowsOrder.clear ();

  // delete databases
  for (tDatabaseMapIterator dbit = m_Databases.begin (); 
       dbit != m_Databases.end ();
       dbit++)
         {
         if (dbit->second->pStmt)        // finalize any outstanding statement
           sqlite3_finalize(dbit->second->pStmt);
         if (dbit->second->db)           // and close the database
           sqlite3_close(dbit->second->db);
         delete dbit->second;      // now delete memory used by it
         }

}   // end of CMUSHclientDoc::~CMUSHclientDoc
コード例 #25
0
ファイル: AutoExeDoc.cpp プロジェクト: dekai-wang/TestCode
CAutoExeDoc::~CAutoExeDoc()
{
	AfxOleUnlockApp();
}
コード例 #26
0
ファイル: __TB_DataDoc.cpp プロジェクト: Execsl/usnap
C__TB_DataDoc::~C__TB_DataDoc()
{
	AfxOleUnlockApp();
}
コード例 #27
0
ファイル: ColorEyeIDoc.cpp プロジェクト: dwatow/ColorEyeI
CColorEyeIDoc::~CColorEyeIDoc()
{
    AfxOleUnlockApp();
}
コード例 #28
0
ファイル: mysnifferDoc.cpp プロジェクト: murdercdh/mysniffer
CMysnifferDoc::~CMysnifferDoc()
{
	AfxOleUnlockApp();
}
コード例 #29
0
LONG CUPlayBackModule::Unlock()
{
    AfxOleUnlockApp();
    return 0;
}
コード例 #30
0
ファイル: DevObjDoc.cpp プロジェクト: JackWangCUMT/SuperCxHMI
CDevObjDoc::~CDevObjDoc()
{
	AfxOleUnlockApp();
}