WSK_BUF_LIST - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-wsk-wsk_buf_list)

Description

The WSK_BUF_LIST structure is used to send multiple datagrams via a single call to WskSendMessages.

Members

Next

A pointer to a WSK_BUF_LIST structure containing the next data buffer in the list.

Buffer

An initialized WSK_BUF structure that describes a data buffer.

Remarks

See also

WskSendMessages

WSK_BUF