DEVICEPROPERTYHEADER - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// winddiui.h

typedef struct _DEVICEPROPERTYHEADER {
  WORD   cbSize;
  WORD   Flags;
  HANDLE hPrinter;
  LPTSTR pszPrinterName;
} DEVICEPROPERTYHEADER, *PDEVICEPROPERTYHEADER;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-winddiui-_devicepropertyheader)

Description

The DEVICEPROPERTYHEADER structure is used as an input parameter to a printer interface DLL's DrvDevicePropertySheets function.

Members

cbSize

Size, in bytes, of the DEVICEPROPERTYHEADER structure.

Flags

Is a set of flags that can be set to the following value:

Value Meaning
DPS_NOPERMISSION If set, the user is not permitted to update device settings.

hPrinter

Printer handle.

pszPrinterName

Pointer to a NULL-terminated string representing a printer name.