BINARY_CONTAINER - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// winspool.h

typedef struct _BINARY_CONTAINER {
  DWORD  cbBuf;
  LPBYTE pData;
} BINARY_CONTAINER, *PBINARY_CONTAINER;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-winspool-_binary_container)

_BINARY_CONTAINER structure

Description

The BINARY_CONTAINER structure is a container for binary data.

Members

cbBuf

Specifies the number of bytes of binary data in the pData member.

pData

Pointer to a buffer that contains the binary data.

Remarks

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.

See also

BIDI_DATA