Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenabios.c
Go to the documentation of this file.
00001 /* 00002 * PROJECT: ReactOS Kernel 00003 * LICENSE: GPL - See COPYING in the top level directory 00004 * FILE: ntoskrnl/ke/i386/abios.c 00005 * PURPOSE: Routines for ABIOS Support 00006 * PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org) 00007 */ 00008 00009 /* INCLUDES *****************************************************************/ 00010 00011 #include <ntoskrnl.h> 00012 #define NDEBUG 00013 #include <debug.h> 00014 00015 /* FUNCTIONS *****************************************************************/ 00016 00017 /* 00018 * @unimplemented 00019 */ 00020 NTSTATUS 00021 NTAPI 00022 KeI386FlatToGdtSelector(IN ULONG Base, 00023 IN USHORT Length, 00024 IN USHORT Selector) 00025 { 00026 UNIMPLEMENTED; 00027 return 0; 00028 } 00029 00030 /* 00031 * @unimplemented 00032 */ 00033 NTSTATUS 00034 NTAPI 00035 KeI386ReleaseGdtSelectors(OUT PULONG SelArray, 00036 IN ULONG NumOfSelectors) 00037 { 00038 UNIMPLEMENTED; 00039 return 0; 00040 } 00041 00042 /* 00043 * @unimplemented 00044 */ 00045 NTSTATUS 00046 NTAPI 00047 KeI386AllocateGdtSelectors(OUT PULONG SelArray, 00048 IN ULONG NumOfSelectors) 00049 { 00050 UNIMPLEMENTED; 00051 return 0; 00052 } 00053 00054 /* EOF */ Generated on Sun May 27 2012 04:37:31 for ReactOS by
1.7.6.1
|