mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
- Move ExCreateUUID to uuid.c
- Move ExpVerifiySuite to sysinfo.c - Delete util.c svn path=/trunk/; revision=17055
This commit is contained in:
parent
6b12a0217e
commit
7500ee65fa
3 changed files with 23 additions and 45 deletions
|
@ -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,
|
||||
|
|
|
@ -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 */
|
|
@ -212,6 +212,18 @@ ExpCreateUuids(PULARGE_INTEGER Time,
|
|||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
NTSTATUS
|
||||
STDCALL
|
||||
ExUuidCreate(
|
||||
OUT UUID *Uuid
|
||||
)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
|
|
Loading…
Reference in a new issue