spoolss: Add stubs for SpoolerHasInitialized and SpoolerInit.

This commit is contained in:
Detlef Riekenberg 2008-01-05 09:03:07 +01:00 committed by Alexandre Julliard
parent 5352d099b4
commit 432de8a9b2
2 changed files with 20 additions and 2 deletions

View File

@ -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

View File

@ -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;
}