Creates a new instance of the default embedding handler. This instance is initialized so it creates a local server when the embedded object enters the running state.
WINOLEAPI OleCreateDefaultHandler(
REFCLSID clsid, |
//OLE server to be loaded |
LPUNKNOWN pUnkOuter, |
//Pointer to controlling IUnknown if aggregated; else NULL |
REFIID riid, |
//Reference to the identifier of the interface for communicating with handler |
LPVOID FAR * ppvObj |
//Indirect pointer to interface on handler |
); |
Parameters
Return Values
This function supports the standard return value E_OUTOFMEMORY, as well as the following:
Remarks
OleCreateDefaultHandler creates a new instance of the default embedding handler, initialized so it creates a local server identified by the clsid parameter when the embedded object enters the running state. If you are writing a handler and want to use the services of the default handler, call OleCreateDefaultHandler. OLE also calls it internally when the CLSID specified in an object creation call is not registered.
If the given class does not have a special handler, a call to OleCreateDefaultHandler produces the same results as a call to the CoCreateInstance function with the class context parameter assigned the value CLSCTX_INPROC_HANDLER.
See Also