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