// printoem.h
typedef struct _OEMUIPROCS {
PFN_DrvGetDriverSetting DrvGetDriverSetting;
PFN_DrvUpdateUISetting DrvUpdateUISetting;
} OEMUIPROCS, *POEMUIPROCS;
View the official Windows Driver Kit DDI referenceNo description available.
The OEMUIPROCS structure is obsolete.
The OEMUIPROCS structure contains the address of the DrvGetDriverSetting and DrvUpdateUISetting functions that are exported by Microsoft printer drivers.
DrvGetDriverSettingPointer to the printer driver's DrvGetDriverSetting function. (To obtain this function's address in kernel mode, see DRVPROCS.
DrvUpdateUISettingPointer to the printer driver's DrvUpdateUISetting function.
DrvGetDriverSetting and DrvUpdateUISetting have been superseded by COM-based interfaces.
The OEMUIPROCS structure's address is contained in an OEMUIOBJ structure.