// printoem.h
PFN_DrvUpdateUISetting PfnDrvupdateuisetting;
BOOL PfnDrvupdateuisetting(
PVOID pdriverobj,
PVOID pOptItem,
DWORD dwPreviousSelection,
DWORD dwMode
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
The DrvUpdateUISetting function is obsolete.
Windows 2000 and later UI plug-ins should use IPrintOemDriverUI::DrvUpdateUISetting or IPrintCoreUI2::DrvUpdateUISetting.
This function pointer prototype defines the type of the DrvUpdateUISetting member of the OEMUIPROCS structure.
pdriverobjDefines the PVOID parameter pdriverobj.
pOptItemDefines the PVOID parameter pOptItem.
dwPreviousSelectionDefines the DWORD parameter dwPreviousSelection.
dwModeDefines the DWORD parameter dwMode.
Returns a BOOL value.