blob: ddda20621b51871738c822c56399ab227f287c2a (
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
|
/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/rendition/vboard.h,v 1.6 2000/03/31 20:13:26 dawes Exp $ */
/*
* vboard.h
*
* functions to interact with a Verite board
*/
#ifndef __VBOARD_H__
#define __VBOARD_H__
/*
* includes
*/
#include "rendition.h"
#include "vtypes.h"
/*
* function prototypes
*/
int verite_initboard(ScrnInfoPtr pScreenInfo);
int verite_resetboard(ScrnInfoPtr pScreenInfo);
int verite_getmemorysize(ScrnInfoPtr pScreenInfo);
void verite_check_csucode(ScrnInfoPtr pScreenInfo);
#endif /* __VBOARD_H__ */
/*
* end of file vboard.h
*/
|