mirror of
https://github.com/reactos/wine.git
synced 2025-02-16 02:50:29 +00:00
Stub for NtAllocateUuids.
This commit is contained in:
parent
0c3594a9a6
commit
e529d36010
@ -64,7 +64,7 @@ type win32
|
||||
@ stub NtAlertResumeThread
|
||||
@ stub NtAlertThread
|
||||
@ stdcall NtAllocateLocallyUniqueId(ptr) NtAllocateLocallyUniqueId
|
||||
@ stub NtAllocateUuids
|
||||
@ stdcall NtAllocateUuids(ptr ptr ptr) NtAllocateUuids
|
||||
@ stub NtAllocateVirtualMemory
|
||||
@ stub NtCallbackReturn
|
||||
@ stub NtCancelIoFile
|
||||
|
@ -346,3 +346,15 @@ NTSTATUS WINAPI NtQuerySymbolicLinkObject(
|
||||
return 0;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* NtAllocateUuids [NTDLL]
|
||||
*
|
||||
* I have seen lpdwCount pointing to a pointer once...
|
||||
*/
|
||||
NTSTATUS WINAPI NtAllocateUuids(LPDWORD lpdwCount, LPDWORD *p2, LPDWORD *p3)
|
||||
{
|
||||
FIXME("(%p[%d],%p,%p), stub.\n", lpdwCount,
|
||||
lpdwCount ? *lpdwCount : 0,
|
||||
p2, p3);
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user