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

winspool: Implement SetPrinterW for level 8.

parent 87c05c87
......@@ -3487,6 +3487,10 @@ BOOL WINAPI SetPrinterW( HANDLE printer, DWORD level, LPBYTE data, DWORD command
break;
}
case 8:
/* 8 is the global default printer info and 9 already sets it instead of the per-user one */
/* still, PRINTER_INFO_8W is the same as PRINTER_INFO_9W */
/* fall through */
case 9:
{
PRINTER_INFO_9W *pi = (PRINTER_INFO_9W *)data;
......
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