|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| No
| Win32s
| No
| Import Library
| winspool.lib
| Header File
| winspool.h
| Unicode
| WinNT
| Platform Notes
| None
|
|
|
DeletePrinterData
[New - Windows NT]
The DeletePrinterData function deletes specified configuration data for a printer.
A printer's configuration data consists of a set of named and typed values.
The DeletePrinterData function deletes one of these values, specified by its value name.
DWORD DeletePrinterData(
HANDLE hPrinter,
| // handle to printer of interest
| LPTSTR pValueName,
| // pointer to null-terminated value name string
| );
|
|
Parameters
hPrinter
Handle to the printer whose configuration data is to be deleted.
You obtain this printer handle by calling the OpenPrinter function.
pValueName
Pointer to the null-terminated name of the configuration data value to be
deleted.
Return Value
If the function succeeds, the return value is ERROR_SUCCESS.
If the function fails, the return value is a Win32 error value.
See Also
EnumPrinterData, GetPrinterData, OpenPrinter, SetPrinter, SetPrinterData
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
|