mirror of
https://github.com/reactos/reactos.git
synced 2025-05-25 20:18:22 +00:00
[WINSPOOL] printers.c: Demote 3 ERR() to TRACE(), Fix 1 copypasta (#2311)
This commit is contained in:
parent
ecde376825
commit
06f8f80181
1 changed files with 3 additions and 3 deletions
|
@ -197,7 +197,7 @@ DeviceCapabilitiesW(LPCWSTR pDevice, LPCWSTR pPort, WORD fwCapability, LPWSTR pO
|
||||||
INT WINAPI
|
INT WINAPI
|
||||||
DocumentEvent( HANDLE hPrinter, HDC hdc, int iEsc, ULONG cbIn, PVOID pvIn, ULONG cbOut, PVOID pvOut)
|
DocumentEvent( HANDLE hPrinter, HDC hdc, int iEsc, ULONG cbIn, PVOID pvIn, ULONG cbOut, PVOID pvOut)
|
||||||
{
|
{
|
||||||
ERR("DocumentEvent(%p, %p, %lu, %lu, %p, %lu, %p)\n", hPrinter, hdc, iEsc, cbIn, pvIn, cbOut, pvOut);
|
TRACE("DocumentEvent(%p, %p, %lu, %lu, %p, %lu, %p)\n", hPrinter, hdc, iEsc, cbIn, pvIn, cbOut, pvOut);
|
||||||
UNIMPLEMENTED;
|
UNIMPLEMENTED;
|
||||||
return DOCUMENTEVENT_UNSUPPORTED;
|
return DOCUMENTEVENT_UNSUPPORTED;
|
||||||
}
|
}
|
||||||
|
@ -1529,7 +1529,7 @@ GetPrinterDriverW(HANDLE hPrinter, LPWSTR pEnvironment, DWORD Level, LPBYTE pDri
|
||||||
RpcExcept(EXCEPTION_EXECUTE_HANDLER)
|
RpcExcept(EXCEPTION_EXECUTE_HANDLER)
|
||||||
{
|
{
|
||||||
dwErrorCode = RpcExceptionCode();
|
dwErrorCode = RpcExceptionCode();
|
||||||
ERR("_RpcGetPrinter failed with exception code %lu!\n", dwErrorCode);
|
ERR("_RpcGetPrinterDriver failed with exception code %lu!\n", dwErrorCode);
|
||||||
}
|
}
|
||||||
RpcEndExcept;
|
RpcEndExcept;
|
||||||
|
|
||||||
|
@ -1935,7 +1935,7 @@ SetPrinterW(HANDLE hPrinter, DWORD Level, PBYTE pPrinter, DWORD Command)
|
||||||
BOOL WINAPI
|
BOOL WINAPI
|
||||||
SplDriverUnloadComplete(LPWSTR pDriverFile)
|
SplDriverUnloadComplete(LPWSTR pDriverFile)
|
||||||
{
|
{
|
||||||
ERR("DriverUnloadComplete(%S)\n", pDriverFile);
|
TRACE("DriverUnloadComplete(%S)\n", pDriverFile);
|
||||||
UNIMPLEMENTED;
|
UNIMPLEMENTED;
|
||||||
return TRUE; // return true for now.
|
return TRUE; // return true for now.
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue