Commit c9fdc565 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

winspool.drv: Support printer info level 8.

parent b3e5d2c1
...@@ -3992,6 +3992,10 @@ BOOL WINAPI GetPrinterW(HANDLE hPrinter, DWORD Level, LPBYTE pPrinter, ...@@ -3992,6 +3992,10 @@ BOOL WINAPI GetPrinterW(HANDLE hPrinter, DWORD Level, LPBYTE pPrinter,
} }
case 8:
/* 8 is the global default printer info and 9 already gets it instead of the per-user one */
/* still, PRINTER_INFO_8W is the same as PRINTER_INFO_9W */
/* fall through */
case 9: case 9:
{ {
PRINTER_INFO_9W *pi9 = (PRINTER_INFO_9W *)pPrinter; PRINTER_INFO_9W *pi9 = (PRINTER_INFO_9W *)pPrinter;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment