- Move ExCreateUUID to uuid.c

- Move ExpVerifiySuite to sysinfo.c
- Delete util.c

svn path=/trunk/; revision=17055
This commit is contained in:
Alex Ionescu 2005-08-05 06:13:23 +00:00
parent 6b12a0217e
commit 7500ee65fa
3 changed files with 23 additions and 45 deletions

View file

@ -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,

View file

@ -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 */

View file

@ -212,6 +212,18 @@ ExpCreateUuids(PULARGE_INTEGER Time,
return STATUS_SUCCESS;
}
/*
* @unimplemented
*/
NTSTATUS
STDCALL
ExUuidCreate(
OUT UUID *Uuid
)
{
UNIMPLEMENTED;
return FALSE;
}
/*
* @unimplemented