From e529d36010fa5dcdee6bc54753133a7b86d3778d Mon Sep 17 00:00:00 2001 From: Andreas Mohr Date: Thu, 13 Apr 2000 15:56:40 +0000 Subject: [PATCH] Stub for NtAllocateUuids. --- dlls/ntdll/ntdll.spec | 2 +- dlls/ntdll/om.c | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/dlls/ntdll/ntdll.spec b/dlls/ntdll/ntdll.spec index 6be618e7a8..9c0c595426 100644 --- a/dlls/ntdll/ntdll.spec +++ b/dlls/ntdll/ntdll.spec @@ -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 diff --git a/dlls/ntdll/om.c b/dlls/ntdll/om.c index 81a0f0211c..8e39cc5acb 100644 --- a/dlls/ntdll/om.c +++ b/dlls/ntdll/om.c @@ -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; +}