// printoem.h
PFN_DrvGetDriverSetting PfnDrvgetdriversetting;
BOOL PfnDrvgetdriversetting(
PVOID pdriverobj,
PCSTR Feature,
PVOID pOutput,
DWORD cbSize,
[out, optional] PDWORD pcbNeeded,
[out, optional] PDWORD pdwOptionsReturned
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
The DrvGetDriverSetting function is obsolete.
Windows 2000 and later printer drivers should use IPrintOemDriverUI::DrvGetDriverSetting, IPrintCoreUI2::DrvGetDriverSetting (UI plug-ins), IPrintOemDriverUni::DrvGetDriverSetting (Unidrv plug-ins) or IPrintOemDriverPS::DrvGetDriverSetting (Pscript plug-ins)
This function pointer type defines the type of the DrvGetDriverSetting member of the OEMUIPROCS and DRVPROCS structures.
pdriverobjDefines the PVOID parameter pdriverobj.
FeatureDefines the PCSTR parameter Feature.
pOutputDefines the PVOID parameter pOutput.
cbSizeDefines the DWORD parameter cbSize.
pcbNeeded [out, optional]Defines the PDWORD parameter pcbNeeded.
pdwOptionsReturned [out, optional]Defines the PDWORD parameter pdwOptionsReturned.
Returns a BOOL value.