Last change
on this file since 78293 was 69098, checked in by vboxsync, 7 years ago |
Clean up XFree86 driver header files.
bugref:3810: X11 Guest Additions maintenance
Over the years we have cleaned up the layout in the tree of the X.Org
header files we use to build drivers. The XFree86 ones were still in their
original, rather sub-optimal layout. This change fixes that.
|
-
Property svn:eol-style
set to
native
|
File size:
901 bytes
|
Line | |
---|
1 | /* $XFree86: xc/programs/Xserver/hw/xfree86/os-support/xf86OSpriv.h,v 1.5 2000/10/28 01:42:24 mvojkovi Exp $ */
|
---|
2 |
|
---|
3 | #ifndef _XF86OSPRIV_H
|
---|
4 | #define _XF86OSPRIV_H
|
---|
5 |
|
---|
6 | typedef pointer (*MapMemProcPtr)(int, unsigned long, unsigned long, int);
|
---|
7 | typedef void (*UnmapMemProcPtr)(int, pointer, unsigned long);
|
---|
8 | typedef pointer (*SetWCProcPtr)(int, unsigned long, unsigned long, Bool,
|
---|
9 | MessageType);
|
---|
10 | typedef void (*ProtectMemProcPtr)(int, pointer, unsigned long, Bool);
|
---|
11 | typedef void (*UndoWCProcPtr)(int, pointer);
|
---|
12 | typedef void (*ReadSideEffectsProcPtr)(int, pointer, unsigned long);
|
---|
13 |
|
---|
14 | typedef struct {
|
---|
15 | Bool initialised;
|
---|
16 | MapMemProcPtr mapMem;
|
---|
17 | UnmapMemProcPtr unmapMem;
|
---|
18 | ProtectMemProcPtr protectMem;
|
---|
19 | SetWCProcPtr setWC;
|
---|
20 | UndoWCProcPtr undoWC;
|
---|
21 | ReadSideEffectsProcPtr readSideEffects;
|
---|
22 | Bool linearSupported;
|
---|
23 | } VidMemInfo, *VidMemInfoPtr;
|
---|
24 |
|
---|
25 | void xf86OSInitVidMem(VidMemInfoPtr);
|
---|
26 |
|
---|
27 | #endif /* _XF86OSPRIV_H */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.