AfxOleInitModule

For OLE support from a regular DLL that is dynamically linked to MFC, call this function in your regular DLL's CWinApp::InitInstance function to initialize the MFC OLE DLL.

void AFXAPI AfxOleInitModule( );

Remarks

The MFC OLE DLL is an extension DLL; in order for an extension DLL to get wired into a CDynLinkLibrary chain, it must create a CDynLinkLibrary object in the context of every module that will be using it. AfxOleInitModule creates the CDynLinkLibrary object in your regular DLL's context so that it gets wired into the CDynLinkLibrary object chain of the regular DLL.

If you are building an OLE control and are using COleControlModule, you should not call AfxOleInitModule because the InitInstance member function for COleControlModule calls AfxOleInitModule.

Requirements

Header: <afxdll_.h>

See Also

Concepts

MFC Macros and Globals

AfxMessageBox