// dispmprt.h
typedef struct _DXGK_START_INFO {
ULONG RequiredDmaQueueEntry;
GUID AdapterGuid;
LUID AdapterLuid;
} DXGK_START_INFO, *PDXGK_START_INFO;
View the official Windows Driver Kit DDI referenceNo description available.
The DXGK_START_INFO structure holds information that is needed by the display miniport driver's DxgkDdiStartDevice function.
RequiredDmaQueueEntryThe number of DMA buffers that the display miniport driver (or the display adapter) must be able to hold in a queue. The display miniport driver must preallocate all resources required to accommodate this number of DMA buffers.
AdapterGuidA GUID that will serve as an identifier for the adapter being started.
AdapterLuidAvailable starting with Windows 8.
A locally unique identifier (LUID) that will serve as an identifier for the adapter being started.
The DirectX graphics kernel subsystem submits DMA buffers to the display miniport driver by calling DxgkDdiSubmitCommand.
The DxgkStartInfo parameter of the DxgkDdiStartDevice function is a pointer to a DXGK_START_INFO structure.