Stub for NtAllocateUuids.

This commit is contained in:
Andreas Mohr 2000-04-13 15:56:40 +00:00 committed by Alexandre Julliard
parent 0c3594a9a6
commit e529d36010
2 changed files with 13 additions and 1 deletions

View File

@ -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

View File

@ -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;
}