The GetPrinterData function retrieves printer-configuration data for the specified printer.
DWORD GetPrinterData(
HANDLE hPrinter, |
// handle of printer object |
LPTSTR pValueName, |
// address of data type |
LPDWORD pType, |
// reserved |
LPBYTE pData, |
// address of array of bytes that receives data |
DWORD nSize, |
// size, in bytes, of array |
LPDWORD pcbNeeded |
// address of variable with number of bytes retrieved (or required) |
); |
If the function succeeds, the return value is ERROR_SUCCESS.
If the function fails, the return value is an error value. To get extended error information, call GetLastError.
The printer handle identified by the hPrinter parameter is obtained by calling the OpenPrinter function.
GetPrinterData retrieves printer-configuration data set by the SetPrinter function.
OpenPrinter, RegQueryValueEx, SetPrinter, SetPrinterData
Questions: