mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 23:22:36 +00:00
6afbc8f483
svn path=/branches/reactos-yarotows/; revision=45219
54 lines
1 KiB
C
54 lines
1 KiB
C
/*
|
|
* PROJECT: ReactOS Kernel
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
* FILE: ntoskrnl/ke/i386/abios.c
|
|
* PURPOSE: Routines for ABIOS Support
|
|
* PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
|
|
*/
|
|
|
|
/* INCLUDES *****************************************************************/
|
|
|
|
#include <ntoskrnl.h>
|
|
#define NDEBUG
|
|
#include <debug.h>
|
|
|
|
/* FUNCTIONS *****************************************************************/
|
|
|
|
/*
|
|
* @unimplemented
|
|
*/
|
|
NTSTATUS
|
|
NTAPI
|
|
KeI386FlatToGdtSelector(IN ULONG Base,
|
|
IN USHORT Length,
|
|
IN USHORT Selector)
|
|
{
|
|
UNIMPLEMENTED;
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* @unimplemented
|
|
*/
|
|
NTSTATUS
|
|
NTAPI
|
|
KeI386ReleaseGdtSelectors(OUT PULONG SelArray,
|
|
IN ULONG NumOfSelectors)
|
|
{
|
|
UNIMPLEMENTED;
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* @unimplemented
|
|
*/
|
|
NTSTATUS
|
|
NTAPI
|
|
KeI386AllocateGdtSelectors(OUT PULONG SelArray,
|
|
IN ULONG NumOfSelectors)
|
|
{
|
|
UNIMPLEMENTED;
|
|
return 0;
|
|
}
|
|
|
|
/* EOF */
|