// d3d10umddi.h
typedef struct D3D11_1DDI_AUTHENTICATED_QUERY_OUTPUT {
D3D11_1DDI_OMAC omac;
GUID QueryType;
HANDLE hChannel;
UINT SequenceNumber;
HRESULT ReturnCode;
} D3D11_1DDI_AUTHENTICATED_QUERY_OUTPUT;
View the official Windows Driver Kit DDI referenceNo description available.
Contains a response from the QueryAuthenticatedChannel(D3D11_1) function.
omacA D3D11_1DDI_OMAC structure that contains a Message Authentication Code (MAC) of the data. The driver uses Advanced Encryption Standard (AES)-based one-key CBC MAC (OMAC) to calculate this value for the block of data that appears after this structure member.
QueryTypeA GUID that specifies the query. For a list of possible values, see the D3D11_1DDI_AUTHENTICATED_QUERY_INPUT structure.
hChannelA handle to the authenticated channel. This handle was created through a call to the CreateAuthenticatedChannel(D3D11_1) function.
SequenceNumberThe query sequence number.
ReturnCodeThe return code that the driver returns when the QueryAuthenticatedChannel(D3D11_1) function is called.
CreateAuthenticatedChannel(D3D11_1)
D3D11_1DDI_AUTHENTICATED_QUERY_INPUT
QueryAuthenticatedChannel(D3D11_1)