// pktmonnpik.h
typedef struct _PKTMON_NETEVT_CLIENT_DISPATCH {
PKTMON_NETEVT_DISPATCH_HEADER Header;
UINT32 HandlerCount;
UINT64 *Handlers;
} PKTMON_NETEVT_CLIENT_DISPATCH;
View the official Windows Driver Kit DDI referenceNo description available.
The PKTMON_NETEVT_CLIENT_DISPATCH structure contains the Packet Monitor NetEvt NMR client dispatch table of NPI callback functions for the client module. A pointer to this structure is passed through the ClientDispatch parameter when calling NmrClientAttachProvider.
HeaderRepresents header information as described in PKTMON_NETEVT_DISPATCH_HEADER.
HandlerCountThe number of handler functions.
HandlersPointer to the list of handler functions.
The client module must make sure that this structure remains valid and resident in memory as long as the provider module is attached to the client module. The contents of the structure are NPI-specific.