Added GetPrintProcessorDirectoryA stub.
This commit is contained in:
parent
8410e71fb5
commit
1d60387e9c
|
@ -995,6 +995,18 @@ BOOL WINAPI AddJobW(HANDLE hPrinter, DWORD Level, LPBYTE pData, DWORD cbBuf,
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*****************************************************************************
|
||||||
|
* GetPrintProcessorDirectoryA [WINSPOOL.@]
|
||||||
|
*/
|
||||||
|
BOOL WINAPI GetPrintProcessorDirectoryA(LPSTR server, LPSTR environ,
|
||||||
|
DWORD level, LPBYTE Info,
|
||||||
|
DWORD cbBuf, LPDWORD needed)
|
||||||
|
{
|
||||||
|
FIXME("(%s,%s,%ld,%p,0x%08lx): stub\n", server, environ, level, Info,
|
||||||
|
cbBuf);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
/*****************************************************************************
|
/*****************************************************************************
|
||||||
* WINSPOOL_OpenDriverReg [internal]
|
* WINSPOOL_OpenDriverReg [internal]
|
||||||
*
|
*
|
||||||
|
|
|
@ -89,7 +89,7 @@
|
||||||
@ stdcall GetFormW(long wstr long ptr long ptr)
|
@ stdcall GetFormW(long wstr long ptr long ptr)
|
||||||
@ stub GetJobA
|
@ stub GetJobA
|
||||||
@ stub GetJobW
|
@ stub GetJobW
|
||||||
@ stub GetPrintProcessorDirectoryA
|
@ stdcall GetPrintProcessorDirectoryA(str str long ptr long ptr)
|
||||||
@ stub GetPrintProcessorDirectoryW
|
@ stub GetPrintProcessorDirectoryW
|
||||||
@ stdcall GetPrinterA(long long ptr long ptr)
|
@ stdcall GetPrinterA(long long ptr long ptr)
|
||||||
@ stdcall GetPrinterDataA(long str ptr ptr long ptr)
|
@ stdcall GetPrinterDataA(long str ptr ptr long ptr)
|
||||||
|
|
Loading…
Reference in New Issue