BINARY_CONTAINER structure (winspool.h)

The BINARY_CONTAINER structure is a container for binary data.

Syntax

typedef struct _BINARY_CONTAINER {
  DWORD  cbBuf;
  LPBYTE pData;
} BINARY_CONTAINER, *PBINARY_CONTAINER;

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.

Requirements

Requirement Value
Minimum supported client This structure is available in Windows XP and later operating systems.
Header winspool.h (include Winspool.h)

See also

BIDI_DATA