Files
xf86-video-xgi/src/vb_util.h
Ian Romanick 1a3cd0a7f8 Initial pass at getting driver building. Not done yet.
Shuffle files around into their correct places.  Create Makefile.am,
configure.ac, and autogen.sh based on similar files in other drivers.  Delete
pre-modular files (e.g., Imakefile) that are no longer necessary.
2006-11-16 12:41:02 -08:00

17 lines
707 B
C

#ifndef _VBUTIL_
#define _VBUTIL_
extern void NewDelaySeconds( int );
extern void Newdebugcode( UCHAR );
extern void XGINew_SetReg1(USHORT, USHORT, USHORT);
extern void XGINew_SetReg3(USHORT, USHORT);
extern UCHAR XGINew_GetReg1(USHORT, USHORT);
extern UCHAR XGINew_GetReg2(USHORT);
extern void XGINew_SetReg4(USHORT, ULONG);
extern ULONG XGINew_GetReg3(USHORT);
extern void XGINew_ClearDAC( PUCHAR ) ;
extern void XGINew_SetRegOR(USHORT Port,USHORT Index,USHORT DataOR);
extern void XGINew_SetRegAND(USHORT Port,USHORT Index,USHORT DataAND);
extern void XGINew_SetRegANDOR(USHORT Port,USHORT Index,USHORT DataAND,USHORT DataOR);
#endif