Commit 94a87841 authored by Detlef Riekenberg's avatar Detlef Riekenberg Committed by Alexandre Julliard

winspool: Implement SpoolerInit.

parent f11b5831
......@@ -7117,6 +7117,26 @@ emW_cleanup:
}
/******************************************************************************
* SpoolerInit (WINSPOOL.@)
*
* Initialize the Spooler
*
* RETURNS
* Success: TRUE
* Failure: FALSE
*
* NOTES
* The function fails on windows, when the spooler service is not running
*
*/
BOOL WINAPI SpoolerInit(void)
{
if ((backend == NULL) && !load_backend()) return FALSE;
return TRUE;
}
/******************************************************************************
* XcvDataW (WINSPOOL.@)
*
* Execute commands in the Printmonitor DLL
......
......@@ -167,7 +167,7 @@
@ stdcall SetPrinterDataW(long wstr long ptr long)
@ stdcall SetPrinterW(long long ptr long)
@ stub SpoolerDevQueryPrintW
@ stub SpoolerInit
@ stdcall SpoolerInit()
@ stub SpoolerPrinterEvent
@ stdcall StartDocDlgA(ptr ptr)
@ stdcall StartDocDlgW(ptr ptr)
......
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