xref: /reactos/ntoskrnl/ke/i386/abios.c (revision 5eb25b5c)
1 /*
2  * PROJECT:         ReactOS Kernel
3  * LICENSE:         GPL - See COPYING in the top level directory
4  * FILE:            ntoskrnl/ke/i386/abios.c
5  * PURPOSE:         Routines for ABIOS Support
6  * PROGRAMMERS:     Alex Ionescu (alex.ionescu@reactos.org)
7  */
8 
9 /* INCLUDES *****************************************************************/
10 
11 #include <ntoskrnl.h>
12 #define NDEBUG
13 #include <debug.h>
14 
15 /* FUNCTIONS *****************************************************************/
16 
17 /*
18  * @unimplemented
19  */
20 NTSTATUS
21 NTAPI
22 KeI386FlatToGdtSelector(IN ULONG Base,
23                         IN USHORT Length,
24                         IN USHORT Selector)
25 {
26     UNIMPLEMENTED;
27     return 0;
28 }
29 
30 /*
31  * @unimplemented
32  */
33 NTSTATUS
34 NTAPI
35 KeI386ReleaseGdtSelectors(OUT PULONG SelArray,
36                           IN ULONG NumOfSelectors)
37 {
38     UNIMPLEMENTED;
39     return 0;
40 }
41 
42 /*
43  * @unimplemented
44  */
45 NTSTATUS
46 NTAPI
47 KeI386AllocateGdtSelectors(OUT PULONG SelArray,
48                            IN ULONG NumOfSelectors)
49 {
50     UNIMPLEMENTED;
51     return 0;
52 }
53 
54 /* EOF */
55