Commit 432de8a9 authored by Detlef Riekenberg's avatar Detlef Riekenberg Committed by Alexandre Julliard

spoolss: Add stubs for SpoolerHasInitialized and SpoolerInit.

parent 5352d099
...@@ -132,8 +132,8 @@ ...@@ -132,8 +132,8 @@
@ stub SpoolerFindFirstPrinterChangeNotification @ stub SpoolerFindFirstPrinterChangeNotification
@ stub SpoolerFindNextPrinterChangeNotification @ stub SpoolerFindNextPrinterChangeNotification
@ stub SpoolerFreePrinterNotifyInfo @ stub SpoolerFreePrinterNotifyInfo
@ stub SpoolerHasInitialized @ stdcall SpoolerHasInitialized()
@ stub SpoolerInit @ stdcall SpoolerInit()
@ stub StartDocPrinterW @ stub StartDocPrinterW
@ stub StartPagePrinter @ stub StartPagePrinter
@ stub UnloadDriver @ stub UnloadDriver
......
...@@ -230,3 +230,21 @@ BOOL WINAPI SplIsUpgrade(void) ...@@ -230,3 +230,21 @@ BOOL WINAPI SplIsUpgrade(void)
FIXME("() stub\n"); FIXME("() stub\n");
return FALSE; return FALSE;
} }
/******************************************************************
* SpoolerHasInitialized [SPOOLSS.@]
*/
BOOL WINAPI SpoolerHasInitialized(void)
{
FIXME("() stub\n");
return TRUE;
}
/******************************************************************
* SpoolerInit [SPOOLSS.@]
*/
BOOL WINAPI SpoolerInit(void)
{
FIXME("() stub\n");
return TRUE;
}
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