DXGK_TIMED_OPERATION - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// dispmprt.h

typedef struct _DXGK_TIMED_OPERATION {
  [in]  USHORT        Size;
        ULONG_PTR     OwnerTag;
        BOOLEAN       OsHandled;
  [out] BOOLEAN       TimeoutTriggered;
        LARGE_INTEGER Timeout;
        LARGE_INTEGER StartTick;
} DXGK_TIMED_OPERATION, *PDXGK_TIMED_OPERATION;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-dispmprt-_dxgk_timed_operation)

DXGK_TIMED_OPERATION structure

Description

The DXGK_TIMED_OPERATION structure describes a timed operation, which is used in the Timed Operation Interface.

Members

Size [in]

The size, in bytes, of this structure.

OwnerTag

[system] A pointer to the place in the code that started the timed operation.

OsHandled

[system] For system use only.

TimeoutTriggered [out]

A Boolean value that specifies whether the time-out was triggered.

Timeout

[system] For system use only.

StartTick

[system] For system use only.

Remarks

Display miniport drivers should not change of rely on members that are marked with the [system] designation.

See also

DXGK_TIMED_OPERATION_INTERFACE