Commit cdb5f358 authored by Detlef Riekenberg's avatar Detlef Riekenberg Committed by Alexandre Julliard

spoolss: Add a stub for BuildOtherNamesFromMachineName.

parent 6b00b723
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
@ stub AddPrinterW @ stub AddPrinterW
@ stdcall AllocSplStr(wstr) @ stdcall AllocSplStr(wstr)
@ stub AppendPrinterNotifyInfoData @ stub AppendPrinterNotifyInfoData
@ stub BuildOtherNamesFromMachineName @ stdcall BuildOtherNamesFromMachineName(ptr ptr)
@ stub CallDrvDevModeConversion @ stub CallDrvDevModeConversion
@ stub CallRouterFindFirstPrinterChangeNotification @ stub CallRouterFindFirstPrinterChangeNotification
@ stub ClosePrinter @ stub ClosePrinter
......
...@@ -80,6 +80,18 @@ LPWSTR WINAPI AllocSplStr(LPCWSTR pwstr) ...@@ -80,6 +80,18 @@ LPWSTR WINAPI AllocSplStr(LPCWSTR pwstr)
} }
/****************************************************************** /******************************************************************
* BuildOtherNamesFromMachineName [SPOOLSS.@]
*/
BOOL WINAPI BuildOtherNamesFromMachineName(LPVOID * ptr1, LPVOID * ptr2)
{
FIXME("(%p, %p) stub\n", ptr1, ptr2);
*ptr1 = NULL;
*ptr2 = NULL;
return FALSE;
}
/******************************************************************
* DllAllocSplMem [SPOOLSS.@] * DllAllocSplMem [SPOOLSS.@]
* *
* Allocate cleared memory from the spooler heap * Allocate cleared memory from the spooler heap
......
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