// printoem.h
typedef struct _OEMUIOBJ {
DWORD cbSize;
POEMUIPROCS pOemUIProcs;
} OEMUIOBJ, *POEMUIOBJ;
View the official Windows Driver Kit DDI referenceNo description available.
The OEMUIOBJ structure is used as an input argument to several of the methods exported by user interface plug-ins.
cbSizeSize of the OEMUIOBJ structure.
pOemUIProcsPointer to an OEMUIPROCS structure, which is a private, internal structure.
User interface plug-ins do not need to reference an OEMUIOBJ structure's members. Plug-ins receive a pointer to this structure as input to their IPrintOemUI::DeviceCapabilities, IPrintOemUI::DevQueryPrintEx and IPrintOemUI::QueryColorProfile methods.
Additionally, the OEMCUIPPARAM structure contains an OEMUIOBJ structure pointer. Plug-ins must supply the received pointer when calling IPrintOemDriverUI::DrvGetDriverSetting or IPrintOemDriverUI::DrvUpdateUISetting.