From 7500ee65fa866cf20fd8639cd4341bf7b65e3386 Mon Sep 17 00:00:00 2001 From: Alex Ionescu Date: Fri, 5 Aug 2005 06:13:23 +0000 Subject: [PATCH] - Move ExCreateUUID to uuid.c - Move ExpVerifiySuite to sysinfo.c - Delete util.c svn path=/trunk/; revision=17055 --- reactos/ntoskrnl/ex/sysinfo.c | 11 +++++++++ reactos/ntoskrnl/ex/util.c | 45 ----------------------------------- reactos/ntoskrnl/ex/uuid.c | 12 ++++++++++ 3 files changed, 23 insertions(+), 45 deletions(-) delete mode 100644 reactos/ntoskrnl/ex/util.c diff --git a/reactos/ntoskrnl/ex/sysinfo.c b/reactos/ntoskrnl/ex/sysinfo.c index b207fb95353..7a967799aae 100644 --- a/reactos/ntoskrnl/ex/sysinfo.c +++ b/reactos/ntoskrnl/ex/sysinfo.c @@ -95,6 +95,17 @@ ExIsProcessorFeaturePresent(IN ULONG ProcessorFeature) return(SharedUserData->ProcessorFeatures[ProcessorFeature]); } +/* + * @implemented + */ +BOOLEAN +STDCALL +ExVerifySuite(SUITE_TYPE SuiteType) +{ + if (SuiteType == Personal) return TRUE; + return FALSE; +} + NTSTATUS STDCALL NtQuerySystemEnvironmentValue (IN PUNICODE_STRING VariableName, OUT PWSTR ValueBuffer, diff --git a/reactos/ntoskrnl/ex/util.c b/reactos/ntoskrnl/ex/util.c deleted file mode 100644 index 48cadc00c9c..00000000000 --- a/reactos/ntoskrnl/ex/util.c +++ /dev/null @@ -1,45 +0,0 @@ -/* $Id$ - * - * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS kernel - * FILE: ntoskrnl/ex/misc.c - * PURPOSE: Executive Utility Functions - * - * PROGRAMMERS: No programmer listed. - */ - -/* INCLUDES *****************************************************************/ - -#include -#define NDEBUG -#include - -/* FUNCTIONS *****************************************************************/ - -/* - * @unimplemented - */ -NTSTATUS -STDCALL -ExUuidCreate( - OUT UUID *Uuid - ) -{ - UNIMPLEMENTED; - return FALSE; -} - -/* - * @implemented - */ -BOOLEAN -STDCALL -ExVerifySuite( - SUITE_TYPE SuiteType - ) -{ - if (SuiteType == Personal) return TRUE; - return FALSE; -} - -/* EOF */ diff --git a/reactos/ntoskrnl/ex/uuid.c b/reactos/ntoskrnl/ex/uuid.c index bfb75580c7c..8abcd26b6a6 100644 --- a/reactos/ntoskrnl/ex/uuid.c +++ b/reactos/ntoskrnl/ex/uuid.c @@ -212,6 +212,18 @@ ExpCreateUuids(PULARGE_INTEGER Time, return STATUS_SUCCESS; } +/* + * @unimplemented + */ +NTSTATUS +STDCALL +ExUuidCreate( + OUT UUID *Uuid + ) +{ + UNIMPLEMENTED; + return FALSE; +} /* * @unimplemented