// d3dkmthk.h
typedef struct _D3DKMT_GET_PTE {
UINT PhysicalAdapterIndex;
UINT PageTableLevel;
UINT PageTableIndex[DXGK_MAX_PAGE_TABLE_LEVEL_COUNT];
BOOLEAN b64KBPte;
UINT NumPtes;
DXGK_PTE Pte[D3DKMT_GET_PTE_MAX];
UINT NumValidEntries;
} D3DKMT_GET_PTE;
View the official Windows Driver Kit DDI referenceNo description available.
Used to get page table entries (PTE).
PhysicalAdapterIndexThe physical adapter index in the LDA (linked display adapter) chain.
PageTableLevelThe page table level.
PageTableIndexThe page table index.
b64KBPteIndicates whether the page table is 64KB. This value is valid only when dual PTEs are supported.
NumPtesThe number of PTEs to fill.
PteAn array of PTEs.
NumValidEntriesThe number of valid entries.