winspool.drv: Add more traces.
This commit is contained in:
parent
fd193bc781
commit
bdf14227ab
|
@ -2248,6 +2248,8 @@ INT WINAPI DeviceCapabilitiesA(LPCSTR pDevice,LPCSTR pPort, WORD cap,
|
|||
{
|
||||
INT ret;
|
||||
|
||||
TRACE("%s,%s,%u,%p,%p\n", debugstr_a(pDevice), debugstr_a(pPort), cap, pOutput, lpdm);
|
||||
|
||||
if (!GDI_CallDeviceCapabilities16)
|
||||
{
|
||||
GDI_CallDeviceCapabilities16 = (void*)GetProcAddress( GetModuleHandleA("gdi32"),
|
||||
|
@ -2288,6 +2290,8 @@ INT WINAPI DeviceCapabilitiesW(LPCWSTR pDevice, LPCWSTR pPort,
|
|||
LPSTR pPortA = strdupWtoA(pPort);
|
||||
INT ret;
|
||||
|
||||
TRACE("%s,%s,%u,%p,%p\n", debugstr_w(pDevice), debugstr_w(pPort), fwCapability, pOutput, pDevMode);
|
||||
|
||||
if(pOutput && (fwCapability == DC_BINNAMES ||
|
||||
fwCapability == DC_FILEDEPENDENCIES ||
|
||||
fwCapability == DC_PAPERNAMES)) {
|
||||
|
@ -2454,6 +2458,8 @@ BOOL WINAPI OpenPrinterA(LPSTR lpPrinterName,HANDLE *phPrinter,
|
|||
PWSTR pwstrPrinterNameW;
|
||||
BOOL ret;
|
||||
|
||||
TRACE("%s,%p,%p\n", debugstr_a(lpPrinterName), phPrinter, pDefault);
|
||||
|
||||
pwstrPrinterNameW = asciitounicode(&lpPrinterNameW,lpPrinterName);
|
||||
|
||||
if(pDefault) {
|
||||
|
|
Loading…
Reference in New Issue