// winbio_ioctl.h
typedef struct _WINBIO_DATA {
DWORD Size;
BYTE Data[1];
} WINBIO_DATA, *PWINBIO_DATA;
View the official Windows Driver Kit DDI referenceNo description available.
The WINBIO_DATA structure specifies data in IOCTL payloads.
SizeSpecifies the size, in bytes, of the payload.
DataSpecifies an array that contains the payload. Frequently this member contains a structure of type WINBIO_BIR.
The WINBIO_DATA structure associates a length, in bytes, with an arbitrary block of contiguous memory.