mirror of
https://github.com/reactos/reactos.git
synced 2025-04-12 00:29:04 +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
|
BOOL WINAPI
|
||||||
BuildOtherNamesFromMachineName(LPVOID * ptr1, LPVOID * ptr2)
|
BuildOtherNamesFromMachineName(LPVOID * ptr1, ULONG * ptr2)
|
||||||
{
|
{
|
||||||
FIXME("(%p, %p) stub\n", ptr1, ptr2);
|
FIXME("(%p, %p) stub\n", ptr1, ptr2);
|
||||||
|
|
||||||
*ptr1 = NULL;
|
*ptr1 = NULL;
|
||||||
*ptr2 = NULL;
|
*ptr2 = 0;
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue