// 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 referenceNo description available.
The DXGK_TIMED_OPERATION structure describes a timed operation, which is used in the Timed Operation Interface.
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.
Display miniport drivers should not change of rely on members that are marked with the [system] designation.
DXGK_TIMED_OPERATION_INTERFACE