// ndis.h
typedef enum _NDIS_MSIX_TABLE_CONFIG {
NdisMSIXTableConfigSetTableEntry,
NdisMSIXTableConfigMaskTableEntry,
NdisMSIXTableConfigUnmaskTableEntry,
NdisMSIXTableConfigMax
} NDIS_MSIX_TABLE_OPERATION, *PNDIS_MSIX_TABLE_OPERATION;
View the official Windows Driver Kit DDI referenceNo description available.
The NDIS_MSIX_TABLE_OPERATION enumeration identifies the type of MSI-X configuration operation.
NdisMSIXTableConfigSetTableEntryThe MSI-X table entry should be mapped to an MSI-X message that the bus driver allocated to the device.
NdisMSIXTableConfigMaskTableEntryThe interrupts from an MSI-X table entry source should be masked.
NdisMSIXTableConfigUnmaskTableEntryThe interrupts from an MSI-X table entry source should be unmasked.
NdisMSIXTableConfigMaxThe number of enumeration values in NDIS_MSIX_TABLE_OPERATION.
The NDIS_MSIX_TABLE_OPERATION enumeration is used in the NDIS_MSIX_CONFIG_PARAMETERS structure.