Registers an EXE class object with OLE so other applications can connect to it. EXE object applications should call CoRegisterClassObject on startup. It can also be used to register internal objects for use by the same EXE or other code (such as DLLs) that the EXE uses.
STDAPI CoRegisterClassObject(
REFCLSID rclsid, |
//Class identifier (CLSID) to be registered |
IUnknown * pUnk, |
//Pointer to the class object |
DWORD dwClsContext, |
//Context for running executable code |
DWORD flags, |
//How to connect to the class object |
LPDWORD * lpdwRegister |
//Pointer to the value returned |
); |
Parameters
Return Values
This function supports the standard return values E_INVALIDARG, E_OUTOFMEMORY, and E_UNEXPECTED, as well as the following:
Remarks
Only EXE object applications call CoRegisterClassObject. Object handlers or DLL object applications do not call this function &emdash; instead, they must implement and export the DllGetClassObject function.
At startup, a multiple-use EXE object application must create a class object (with the IClassFactory interface on it), and call CoRegisterClassObject to register the class object. Object applications that support several different classes (such as multiple types of embeddable objects) must allocate and register a different class object for each.
Multiple registrations of the same class object are independent and do not produce an error. Each subsequent registration yields a unique key in lpdwRegister.
Multiple document interface (MDI) applications must register their class objects. Single document interface (SDI) applications must register their class objects only if they can be started by means of the /Embedding switch.
The server for a class object should call CoRevokeClassObject to revoke the class object (remove its registration) when all of the following are true:
After the class object is revoked, when its reference count reaches zero, the class object can be released, allowing the application to exit.
For information on the flags parameter, refer to the REGCLS enumeration.
See Also
CoGetClassObject, CoRevokeClassObject, DllGetClassObject, REGCLS, CLSCTX