blob: 77288e4aff354418aed565dc768022e062b5b4c7 (
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
|
/* $NetBSD: bt478var.h,v 1.2 1996/09/21 03:22:24 jonathan Exp $ */
/*
* Copyright 1996 The Board of Trustees of The Leland Stanford
* Junior University. All Rights Reserved.
*
* Permission to use, copy, modify, and distribute this
* software and its documentation for any purpose and without
* fee is hereby granted, provided that the above copyright
* notice appear in all copies. Stanford University
* makes no representations about the suitability of this
* software for any purpose. It is provided "as is" without
* express or implied warranty.
*/
/*
* External declarations exported from the bt478 low-level
* chipset driver.
*/
int bt478init __P((struct fbinfo *fi));
void bt478BlankCursor __P((struct fbinfo *fi));
void bt478RestoreCursorColor __P((struct fbinfo *fi));
void bt478InitColorMap __P((struct fbinfo *fi));
int bt478LoadColorMap __P ((struct fbinfo *fi, caddr_t bits,
int index, int count));
int bt478GetColorMap __P ((struct fbinfo *fi, caddr_t bits,
int index, int count));
|