Module: wine Branch: master Commit: 14fc2eff44f068406d43c8bcea2ff862fb12e04b URL: http://source.winehq.org/git/wine.git/?a=commit;h=14fc2eff44f068406d43c8bcea...
Author: Detlef Riekenberg wine.dev@web.de Date: Fri Feb 11 17:25:34 2011 +0100
winspool: Do not mark AddPrinterA as stub.
---
dlls/winspool.drv/info.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/winspool.drv/info.c b/dlls/winspool.drv/info.c index e4a464a..9d36657 100644 --- a/dlls/winspool.drv/info.c +++ b/dlls/winspool.drv/info.c @@ -2614,7 +2614,7 @@ HANDLE WINAPI AddPrinterA(LPSTR pName, DWORD Level, LPBYTE pPrinter) PRINTER_INFO_2A *piA = (PRINTER_INFO_2A*)pPrinter; HANDLE ret;
- TRACE("(%s,%d,%p): stub\n", debugstr_a(pName), Level, pPrinter); + TRACE("(%s, %d, %p)\n", debugstr_a(pName), Level, pPrinter); if(Level != 2) { ERR("Level = %d, unsupported!\n", Level); SetLastError(ERROR_INVALID_LEVEL);