spoolss: Add stubs for SpoolerHasInitialized and SpoolerInit.
This commit is contained in:
parent
5352d099b4
commit
432de8a9b2
|
@ -132,8 +132,8 @@
|
|||
@ stub SpoolerFindFirstPrinterChangeNotification
|
||||
@ stub SpoolerFindNextPrinterChangeNotification
|
||||
@ stub SpoolerFreePrinterNotifyInfo
|
||||
@ stub SpoolerHasInitialized
|
||||
@ stub SpoolerInit
|
||||
@ stdcall SpoolerHasInitialized()
|
||||
@ stdcall SpoolerInit()
|
||||
@ stub StartDocPrinterW
|
||||
@ stub StartPagePrinter
|
||||
@ stub UnloadDriver
|
||||
|
|
|
@ -230,3 +230,21 @@ BOOL WINAPI SplIsUpgrade(void)
|
|||
FIXME("() stub\n");
|
||||
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