Microsoft DirectX 8.1 (C++) |
This topic applies to Windows XP Home Edition and Windows XP Professional only.
The RequestDenialRemoved method is called when a denial is removed from a request.
Syntax
HRESULT RequestDenialRemoved(
ICARequest* preq,
ICADenial* pDenial,
long cDenials
);
Parameters
preq
[in] Pointer to the ICARequest interface of the request.
pDenial
[in] Pointer to the ICADenial interface of the denial that was removed.
cDenials
[in] Number of denials that remain on this request.
Return Values
Return S_OK or an error code.
Remarks
When the number of non-transient denials reaches zero, the request is allowed. The count returned in cDenials includes transient denials, so if cDenials is greater than zero, the client should check for transient denials. Also, the client should check for denials on components.
The dispatch identifier (dispid) of this method is 2208.
See Also