mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
[SPOOLSS] Fix prototype of BuildOtherNamesFromMachineName
This commit is contained in:
parent
561b71b644
commit
51a09e7358
1 changed files with 2 additions and 2 deletions
|
@ -253,12 +253,12 @@ SpoolerInit(VOID)
|
|||
}
|
||||
|
||||
BOOL WINAPI
|
||||
BuildOtherNamesFromMachineName(LPVOID * ptr1, LPVOID * ptr2)
|
||||
BuildOtherNamesFromMachineName(LPVOID * ptr1, ULONG * ptr2)
|
||||
{
|
||||
FIXME("(%p, %p) stub\n", ptr1, ptr2);
|
||||
|
||||
*ptr1 = NULL;
|
||||
*ptr2 = NULL;
|
||||
*ptr2 = 0;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue