D3D11_1DDI_AUTHENTICATED_QUERY_OUTPUT - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-d3d10umddi-d3d11_1ddi_authenticated_query_output)

D3D11_1DDI_AUTHENTICATED_QUERY_OUTPUT structure

Description

Contains a response from the QueryAuthenticatedChannel(D3D11_1) function.

Members

omac

A 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.

QueryType

A GUID that specifies the query. For a list of possible values, see the D3D11_1DDI_AUTHENTICATED_QUERY_INPUT structure.

hChannel

A handle to the authenticated channel. This handle was created through a call to the CreateAuthenticatedChannel(D3D11_1) function.

SequenceNumber

The query sequence number.

ReturnCode

The return code that the driver returns when the QueryAuthenticatedChannel(D3D11_1) function is called.

See also

CreateAuthenticatedChannel(D3D11_1)

D3D11_1DDI_AUTHENTICATED_QUERY_INPUT

D3D11_1DDI_OMAC

QueryAuthenticatedChannel(D3D11_1)