spoolss: Add a stub for IsLocalCall.

This commit is contained in:
Detlef Riekenberg 2008-06-27 22:17:51 +02:00 committed by Alexandre Julliard
parent 70415dc8a9
commit 5cdde8d796
2 changed files with 10 additions and 1 deletions

View File

@ -74,7 +74,7 @@
@ stub GetPrinterW
@ stdcall ImpersonatePrinterClient(long)
@ stub InitializeRouter
@ stub IsLocalCall
@ stdcall IsLocalCall()
@ stub IsNamedPipeRpcCall
@ stub LoadDriver
@ stub LoadDriverFiletoConvertDevmode

View File

@ -169,6 +169,15 @@ BOOL WINAPI ImpersonatePrinterClient(HANDLE hToken)
return TRUE;
}
/******************************************************************
* IsLocalCall [SPOOLSS.@]
*/
BOOL WINAPI IsLocalCall(void)
{
FIXME("() stub\n");
return TRUE;
}
/******************************************************************
* RevertToPrinterSelf [SPOOLSS.@]
*/