mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 04:39:45 +00:00
spoolss: Add a stub for BuildOtherNamesFromMachineName.
This commit is contained in:
parent
6b00b72349
commit
cdb5f358a1
@ -14,7 +14,7 @@
|
||||
@ stub AddPrinterW
|
||||
@ stdcall AllocSplStr(wstr)
|
||||
@ stub AppendPrinterNotifyInfoData
|
||||
@ stub BuildOtherNamesFromMachineName
|
||||
@ stdcall BuildOtherNamesFromMachineName(ptr ptr)
|
||||
@ stub CallDrvDevModeConversion
|
||||
@ stub CallRouterFindFirstPrinterChangeNotification
|
||||
@ stub ClosePrinter
|
||||
|
@ -79,6 +79,18 @@ LPWSTR WINAPI AllocSplStr(LPCWSTR pwstr)
|
||||
return res;
|
||||
}
|
||||
|
||||
/******************************************************************
|
||||
* BuildOtherNamesFromMachineName [SPOOLSS.@]
|
||||
*/
|
||||
BOOL WINAPI BuildOtherNamesFromMachineName(LPVOID * ptr1, LPVOID * ptr2)
|
||||
{
|
||||
FIXME("(%p, %p) stub\n", ptr1, ptr2);
|
||||
|
||||
*ptr1 = NULL;
|
||||
*ptr2 = NULL;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/******************************************************************
|
||||
* DllAllocSplMem [SPOOLSS.@]
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user