From 55b37c64ca9021c2b8736010bc05b6dfc5d2d3b9 Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Fri, 12 Nov 2004 12:04:32 +0000 Subject: [PATCH] - Move NtAllocateUuids from the Security Reference Monitor to the Executeive. - Update NtAllocateUuids to W2K signature. - Add NtSetUuidSeed. svn path=/trunk/; revision=11627 --- reactos/ntoskrnl/ex/uuid.c | 41 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 reactos/ntoskrnl/ex/uuid.c diff --git a/reactos/ntoskrnl/ex/uuid.c b/reactos/ntoskrnl/ex/uuid.c new file mode 100644 index 00000000000..79c4abae18d --- /dev/null +++ b/reactos/ntoskrnl/ex/uuid.c @@ -0,0 +1,41 @@ +/* $Id: uuid.c,v 1.1 2004/11/12 12:04:32 ekohl Exp $ + * + * COPYRIGHT: See COPYING in the top level directory + * PROJECT: ReactOS kernel + * PURPOSE: UUID generator + * FILE: kernel/ex/uuid.c + */ + +/* INCLUDES *****************************************************************/ + +#include +#define NDEBUG +#include + +/* FUNCTIONS ****************************************************************/ + +/* + * @unimplemented + */ +NTSTATUS STDCALL +NtAllocateUuids(OUT PULARGE_INTEGER Time, + OUT PULONG Range, + OUT PULONG Sequence, + OUT PUCHAR Seed) +{ + UNIMPLEMENTED; + return STATUS_NOT_IMPLEMENTED; +} + + +/* + * @unimplemented + */ +NTSTATUS STDCALL +NtSetUuidSeed(IN PUCHAR Seed) +{ + UNIMPLEMENTED; + return STATUS_NOT_IMPLEMENTED; +} + +/* EOF */