Udostępnij za pośrednictwem


AfxOleGetMessageFilter

Pobiera bieżący filtr wiadomości aplikacji.

COleMessageFilter* AFXAPI AfxOleGetMessageFilter( );

Wartość zwracana

Wskaźnik w bieżącym filtrze wiadomości.

Uwagi

Wywołanie tej funkcji bieżący dostęp do COleMessageFilter-pochodzące z obiektu, podobnie jak możesz wywołać AfxGetApp dostępu do bieżącego obiektu aplikacji.

Przykład

COleMessageFilter* pFilter = AfxOleGetMessageFilter();
ASSERT_VALID(pFilter);
pFilter->BeginBusyState();
// do things requiring a busy state
pFilter->EndBusyState();
// Another example
//CWinApp-derived class
BOOL CCMFCAutomationApp::InitInstance()
{
    CWinApp::InitInstance();

    // Initialize OLE libraries
    if (!AfxOleInit())
    {
        AfxMessageBox(IDP_OLE_INIT_FAILED);
        return FALSE;
    }

   CWinThread* pThread = AfxGetThread();
   if (pThread != NULL)
   {
      // Destroy message filter, thereby unregistering it.
      delete pThread->m_pMessageFilter;
      pThread->m_pMessageFilter = NULL;

      // Create the new message filter object.
      //CMyMessageFilter is derived from COleMessageFilter
      pThread->m_pMessageFilter = new CMyMessageFilter;
      ASSERT(AfxOleGetMessageFilter() != NULL);

      // Register the new message filter object.
      AfxOleGetMessageFilter()->Register();
   }
   //...
   //...
   //...

Wymagania

Nagłówek: <afxwin.h>

Zobacz też

Informacje

Klasa COleMessageFilter

AfxGetApp

Koncepcje

Makra MFC i Globals