mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
- Move NtAllocateUuids from the Security Reference Monitor to the Executeive.
- Update NtAllocateUuids to W2K signature. - Add NtSetUuidSeed. svn path=/trunk/; revision=11627
This commit is contained in:
parent
1eb22067d1
commit
55b37c64ca
1 changed files with 41 additions and 0 deletions
41
reactos/ntoskrnl/ex/uuid.c
Normal file
41
reactos/ntoskrnl/ex/uuid.c
Normal file
|
@ -0,0 +1,41 @@
|
|||
/* $Id: uuid.c,v 1.1 2004/11/12 12:04:32 ekohl Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
* PURPOSE: UUID generator
|
||||
* FILE: kernel/ex/uuid.c
|
||||
*/
|
||||
|
||||
/* INCLUDES *****************************************************************/
|
||||
|
||||
#include <ntoskrnl.h>
|
||||
#define NDEBUG
|
||||
#include <internal/debug.h>
|
||||
|
||||
/* FUNCTIONS ****************************************************************/
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
NTSTATUS STDCALL
|
||||
NtAllocateUuids(OUT PULARGE_INTEGER Time,
|
||||
OUT PULONG Range,
|
||||
OUT PULONG Sequence,
|
||||
OUT PUCHAR Seed)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
NTSTATUS STDCALL
|
||||
NtSetUuidSeed(IN PUCHAR Seed)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
/* EOF */
|
Loading…
Reference in a new issue