|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| No
| Win32s
| No
| Import Library
| -
| Header File
| winspool.h
| Unicode
| No
| Platform Notes
| None
|
|
|
PRINTER_NOTIFY_OPTIONS_TYPE
The PRINTER_NOTIFY_OPTIONS_TYPE structure specifies the set of printer or job information fields to be
monitored by a printer change notification object.
A call to the FindFirstPrinterChangeNotification function specifies a PRINTER_NOTIFY_OPTIONS structure, which contains an array of PRINTER_NOTIFY_OPTIONS_TYPE structures.
typedef struct _PRINTER_NOTIFY_OPTIONS_TYPE {
WORD Type;
WORD Reserved0;
DWORD Reserved1;
DWORD Reserved2;
DWORD Count;
PWORD pFields;
} PRINTER_NOTIFY_OPTIONS_TYPE;
Members
Type
Specifies the type to watch. This member can be one of the following values:
Value
| Meaning
| PRINTER_NOTIFY_TYPE
| Indicates that the fields specified in the pFields array are PRINTER_NOTIFY_FIELD_* constants.
| JOB_NOTIFY_TYPE
| Indicates that the fields specified in the pFields array are JOB_NOTIFY_FIELD_* constants.
|
Reserved0
Reserved.
Reserved1
Reserved.
Reserved2
Reserved.
Count
Specifies the number of elements in the pFields array.
pFields
Points to an array of 16-bit values. Each element of the array specifies a job
or printer information field of interest. For a list of supported printer and
job information fields, see the PRINTER_NOTIFY_INFO_DATA structure.
See Also
FindFirstPrinterChangeNotification, PRINTER_NOTIFY_INFO_DATA, PRINTER_NOTIFY_OPTIONS
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Programmer's Reference (win32.hlp)
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|