Commit e529d360 authored by Andreas Mohr's avatar Andreas Mohr Committed by Alexandre Julliard

Stub for NtAllocateUuids.

parent 0c3594a9
......@@ -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;
}
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