Microsoft DirectX 8.1 (C++) |
This topic applies to Windows XP Home Edition and Windows XP Professional only.
The get_CAManager method retrieves a pointer to CA Manager object, if the control is bound to the CA Manager.
Syntax
HRESULT get_CAManager(
ICAManager **ppCAManager
);
Parameters
ppCAManager
[out, retval] Pointer to a variable that receives either an ICAManager interface pointer or the value NULL.
Return Values
Returns an HRESULT value. Possible values include the following.
Return code | Description |
S_FALSE | The control is not bound to the CA Manager. |
S_OK | Successful. The control is bound to the CA Manager. |
E_POINTER | NULL pointer argument. |
Remarks
The application must bind the control to the CA Manager by calling the ICAResDenialTree::put_CAManager method. If the control is not bound, this method returns a NULL pointer.
If the method returns S_OK, the ICAManager interface has an outstanding reference count. The caller must release the interface.
See Also