// ndkpi.h
typedef struct _NDK_LOGICAL_ADDRESS_MAPPING {
  PVOID               AdapterContext;
  ULONG               AdapterPageCount;
  NDK_LOGICAL_ADDRESS AdapterPageArray[1];
} NDK_LOGICAL_ADDRESS_MAPPING;
View the official Windows Driver Kit DDI referenceNo description available.
The NDK_LOGICAL_ADDRESS_MAPPING structure contains an array of adapter logical addresses.
AdapterContextReserved for the NDK provider's use. The NDK consumer must not modify this member.
AdapterPageCountThe number of entries in the array that is specified in the AdapterPageArray member.
AdapterPageArrayAn array of adapter logical addresses. Each logical address in the array corresponds to a page, of PAGE_SIZE bytes in length, and must be PAGE_SIZE-aligned. The array of pages correspond to a virtually contiguous memory region. The NDK_LOGICAL_ADDRESS datatype is defined as follows:
typedef PHYSICAL_ADDRESS NDK_LOGICAL_ADDRESS;
NDK_LOGICAL_ADDRESS_MAPPING represents an adapter's view of physical memory. See NDK_FN_BUILD_LAM and NDK_FN_RELEASE_LAM for more information.