This patch exports all symbols required by the compilable (in a x86 linux computer) xorg/driver/* modules. Still missing symbols worth mentioning are: sunleo miFindMaxBand no longer available intel (uxa/uxa-accel.c) fbShmPutImage no longer available (and should have been static) mga MGAGetClientPointer (should come from matrox's libhal) This is not a definitive "visibility" patch, as all it does is to export missing symbols, but the modules that current don't compile, may require more symbols once fixed, and third party drivers should also require more symbols exported. A "definitive" patch should export symbols defined in the sdk.
70 lines
1.1 KiB
C
70 lines
1.1 KiB
C
/*
|
|
* XFree86 int10 module
|
|
* execute BIOS int 10h calls in x86 real mode environment
|
|
* Copyright 1999 Egbert Eich
|
|
*/
|
|
#ifdef HAVE_XORG_CONFIG_H
|
|
#include <xorg-config.h>
|
|
#endif
|
|
|
|
#include "xf86.h"
|
|
#include "xf86str.h"
|
|
#include "xf86_OSproc.h"
|
|
#define _INT10_PRIVATE
|
|
#include "xf86int10.h"
|
|
|
|
_X_EXPORT xf86Int10InfoPtr
|
|
xf86InitInt10(int entityIndex)
|
|
{
|
|
return xf86ExtendedInitInt10(entityIndex, 0);
|
|
}
|
|
|
|
_X_EXPORT xf86Int10InfoPtr
|
|
xf86ExtendedInitInt10(int entityIndex, int Flags)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
Bool
|
|
MapCurrentInt10(xf86Int10InfoPtr pInt)
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
_X_EXPORT void
|
|
xf86FreeInt10(xf86Int10InfoPtr pInt)
|
|
{
|
|
return;
|
|
}
|
|
|
|
_X_EXPORT void *
|
|
xf86Int10AllocPages(xf86Int10InfoPtr pInt,int num, int *off)
|
|
{
|
|
*off = 0;
|
|
return NULL;
|
|
}
|
|
|
|
_X_EXPORT void
|
|
xf86Int10FreePages(xf86Int10InfoPtr pInt, void *pbase, int num)
|
|
{
|
|
return;
|
|
}
|
|
|
|
Bool
|
|
xf86Int10ExecSetup(xf86Int10InfoPtr pInt)
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
_X_EXPORT void
|
|
xf86ExecX86int10(xf86Int10InfoPtr pInt)
|
|
{
|
|
return;
|
|
}
|
|
|
|
_X_EXPORT pointer
|
|
xf86int10Addr(xf86Int10InfoPtr pInt, CARD32 addr)
|
|
{
|
|
return 0;
|
|
}
|