spoolss: Add stubs for SpoolerHasInitialized and SpoolerInit.
This commit is contained in:
parent
5352d099b4
commit
432de8a9b2
|
@ -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)
|
||||||
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;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue