// wsk.h
typedef struct _WSK_BUF_LIST {
struct _WSK_BUF_LIST *Next;
WSK_BUF Buffer;
} WSK_BUF_LIST, *PWSK_BUF_LIST;
View the official Windows Driver Kit DDI referenceNo description available.
The WSK_BUF_LIST structure is used to send multiple datagrams via a single call to WskSendMessages.
NextA pointer to a WSK_BUF_LIST structure containing the next data buffer in the list.
BufferAn initialized WSK_BUF structure that describes a data buffer.