DeletePrinterData function
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.
Calling DeletePrinterData is equivalent to calling the DeletePrinterDataEx function with the pKeyName parameter set to "PrinterDriverData".
Syntax
DWORD DeletePrinterData( _In_ HANDLE hPrinter, _In_ LPTSTR pValueName );
Parameters
- hPrinter [in]
-
A handle to the printer whose configuration data is to be deleted. Use the OpenPrinter or AddPrinter function to retrieve a printer handle.
- pValueName [in]
-
A 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 system error code.
Remarks
Requirements
Minimum supported client |
Windows 2000 Professional [desktop apps only] |
---|---|
Minimum supported server |
Windows 2000 Server [desktop apps only] |
Header |
|
Library |
|
DLL |
|
Unicode and ANSI names |
DeletePrinterDataW (Unicode) and DeletePrinterDataA (ANSI) |
See also
- Printing
- Print Spooler API Functions
- EnumPrinterData
- GetPrinterData
- OpenPrinter
- SetPrinter
- SetPrinterData