File: fbset.h

package info (click to toggle)
fbset 1.0-2
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 132 kB
  • ctags: 141
  • sloc: ansic: 837; lex: 114; makefile: 106; yacc: 95; sh: 56
file content (67 lines) | stat: -rw-r--r-- 1,458 bytes parent folder | download
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
 *  Linux/m68k Frame Buffer Device Configuration
 *
 *   Copyright 1995 by Geert Uytterhoeven
 *			(Geert.Uytterhoeven@cs.kuleuven.ac.be)
 *
 *  --------------------------------------------------------------------------
 *
 *  This file is subject to the terms and conditions of the GNU General Public
 *  License. See the file COPYING in the main directory of the Linux
 *  distribution for more details.
 */


#include <stdio.h>
#include <sys/types.h>


#define VERSION         "Linux/m68k Frame Buffer Device Configuration " \
			"Version 1.0 (12/8/96)\n"  \
			"(C) Copyright 1995 by Geert Uytterhoeven\n"

#define LOW		(0)
#define HIGH		(1)

#define FALSE		(0)
#define TRUE		(1)


struct VideoMode {
    struct VideoMode *next;
    char *name;
    /* geometry */
    u_long xres;
    u_long yres;
    u_long vxres;
    u_long vyres;
    u_long depth;
    /* timings */
    u_long pixclock;
    u_long left;
    u_long right;
    u_long upper;
    u_long lower;
    u_long hslen;
    u_long vslen;
    /* flags */
    u_long hsync : 1;
    u_long vsync : 1;
    u_long csync : 1;
    u_long extsync : 1;
    u_long bcast : 1;
    u_long laced : 1;
    u_long dblscan : 1;
    /* scanrates */
    double hrate;
    double vrate;
};

extern FILE *yyin;
extern int line;
extern const char *Opt_modedb;

extern int yyparse(void);
extern void Die(const char *fmt, ...) __attribute__ ((noreturn));
extern void AddVideoMode(const struct VideoMode *vmode);