D3DAUTHENTICATEDCHANNEL_CONFIGURE_OUTPUT structure
Contains the response to a call to the IDirect3DAuthenticatedChannel9::Configure method.
Syntax
typedef struct _D3DAUTHENTICATEDCHANNEL_CONFIGURE_OUTPUT {
D3D_OMAC omac;
GUID ConfigureType;
HANDLE hChannel;
UINT SequenceNumber;
HRESULT ReturnCode;
} D3DAUTHENTICATEDCHANNEL_CONFIGURE_OUTPUT;
Members
-
omac
-
A D3D_OMAC structure that contains a Message Authentication Code (MAC) of the data. The driver uses AES-based one-key CBC MAC (OMAC) to calculate this value for the block of data that appears after this structure member.
-
ConfigureType
-
A GUID that specifies the command. For a list of values, see Content Protection Commands.
-
hChannel
-
A handle to the authenticated channel.
-
SequenceNumber
-
The command sequence number.
-
ReturnCode
-
The result code for the command.
Remarks
For the ConfigureType, hChannel, and SequenceNumber members, the driver uses the same values that the application provided in the D3DAUTHENTICATEDCHANNEL_CONFIGURE_INPUT structure. The application should verify that these values match.
Requirements
Requirement | Value |
---|---|
Minimum supported client |
Windows 7 [desktop apps only] |
Minimum supported server |
Windows Server 2008 R2 [desktop apps only] |
Header |
|
See also