- Move ExCreateUUID to uuid.c
- Move ExpVerifiySuite to sysinfo.c
- Delete util.c
Modified: trunk/reactos/ntoskrnl/ex/sysinfo.c
Deleted: trunk/reactos/ntoskrnl/ex/util.c
Modified: trunk/reactos/ntoskrnl/ex/uuid.c

Modified: trunk/reactos/ntoskrnl/ex/sysinfo.c
--- trunk/reactos/ntoskrnl/ex/sysinfo.c	2005-08-05 03:59:05 UTC (rev 17054)
+++ trunk/reactos/ntoskrnl/ex/sysinfo.c	2005-08-05 06:13:23 UTC (rev 17055)
@@ -95,6 +95,17 @@
     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,

Deleted: trunk/reactos/ntoskrnl/ex/util.c
--- trunk/reactos/ntoskrnl/ex/util.c	2005-08-05 03:59:05 UTC (rev 17054)
+++ trunk/reactos/ntoskrnl/ex/util.c	2005-08-05 06:13:23 UTC (rev 17055)
@@ -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 <ntoskrnl.h>
-#define NDEBUG
-#include <internal/debug.h>
-
-/* 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 */

Modified: trunk/reactos/ntoskrnl/ex/uuid.c
--- trunk/reactos/ntoskrnl/ex/uuid.c	2005-08-05 03:59:05 UTC (rev 17054)
+++ trunk/reactos/ntoskrnl/ex/uuid.c	2005-08-05 06:13:23 UTC (rev 17055)
@@ -212,6 +212,18 @@
   return STATUS_SUCCESS;
 }
 
+/*
+ * @unimplemented
+ */
+NTSTATUS
+STDCALL
+ExUuidCreate(
+    OUT UUID *Uuid
+    )
+{
+	UNIMPLEMENTED;
+	return FALSE;
+}
 
 /*
  * @unimplemented