summaryrefslogtreecommitdiff
path: root/xc/programs/Xserver/hw/xfree86/int10/stub.c
blob: c46160f5d7b497edf1bee51a7a8b93ff1bc9b6c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/* $XFree86: xc/programs/Xserver/hw/xfree86/int10/stub.c,v 1.2 2000/02/12 03:39:57 dawes Exp $ */
/*
 *                   XFree86 int10 module
 *   execute BIOS int 10h calls in x86 real mode environment
 *                 Copyright 1999 Egbert Eich
 */
#include "xf86.h"
#include "xf86str.h"
#include "xf86_OSproc.h"
#define _INT10_PRIVATE
#include "xf86int10.h"

xf86Int10InfoPtr
xf86InitInt10(int entityIndex)
{
    return NULL;
}

void
MapCurrentInt10(xf86Int10InfoPtr pInt)
{
    return;
}

void
xf86FreeInt10(xf86Int10InfoPtr pInt)
{
    return;
}

void *
xf86Int10AllocPages(xf86Int10InfoPtr pInt,int num, int *off)
{
    *off = 0;
    return NULL;
}

void
xf86Int10FreePages(xf86Int10InfoPtr pInt, void *pbase, int num)
{
    return;
}

Bool
xf86Int10ExecSetup(xf86Int10InfoPtr pInt)
{
    return FALSE;
}

void
xf86ExecX86int10(xf86Int10InfoPtr pInt)
{
    return;
}

pointer
xf86int10Addr(xf86Int10InfoPtr pInt, CARD32 addr)
{
    return 0;
}