// winspool.h
typedef struct _BINARY_CONTAINER {
DWORD cbBuf;
LPBYTE pData;
} BINARY_CONTAINER, *PBINARY_CONTAINER;
View the official Windows Driver Kit DDI referenceNo description available.
The BINARY_CONTAINER structure is a container for binary data.
cbBufSpecifies the number of bytes of binary data in the pData member.
pDataPointer to a buffer that contains the binary data.
The BINARY_CONTAINER structure is used in a BIDI_DATA structure when the bidi data consists of binary data, as opposed to integer, float, or string data.