// printoem.h
typedef struct {
DWORD dwSize;
POINT ptOffset;
PSTR pHalftoneOption;
BOOL bBanding;
BOOL bBlankBand;
} IPPARAMS, *PIPPARAMS;
View the official Windows Driver Kit DDI referenceNo description available.
The IPPARAMS structure is used as an input parameter to a rendering plug-in IPrintOemUn::ImageProcessing method.
dwSizeSpecifies the size, in bytes of the IPPARAMS structure. Supplied by Unidrv.
ptOffsetPointer to a POINT structure containing the banded image's offset from the upper left corner of the drawing area. Supplied by Unidrv.
pHalftoneOptionPointer to a string containing the name of the currently selected halftoning option. Supplied by Unidrv.
bBandingSpecifies whether image banding is active. If TRUE, image banding is active. If FALSE, image banding is not active. Supplied by Unidrv.
bBlankBandSpecifies whether a blank band was drawn in the source bitmap supplied to IPrintOemUni::ImageProcessing. A value of TRUE indicates that nothing was drawn in the source bitmap supplied to IPrintOemUni::ImageProcessing. A TRUE value also indicates that data in the source bitmap is invalid and should not be processed. Supplied by Unidrv.