File: rc.h

package info (click to toggle)
dgen 1.23-9
  • links: PTS
  • area: non-free
  • in suites: etch, etch-m68k
  • size: 2,168 kB
  • ctags: 3,087
  • sloc: ansic: 45,403; cpp: 4,405; sh: 1,960; makefile: 116
file content (24 lines) | stat: -rw-r--r-- 639 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// DGen/SDL v1.23+
#ifndef __SVGALIB_RC_H__
#define __SVGALIB_RC_H__

// Define the different craptv types
#define NUM_CTV 4 // Include CTV_OFF
#define CTV_OFF       0
#define CTV_BLUR      1
#define CTV_SCANLINE  2
#define CTV_INTERLACE 3

// Define OR masks for key modifiers
#define KEYSYM_MOD_ALT		0x40000000
#define KEYSYM_MOD_SHIFT	0x20000000
#define KEYSYM_MOD_CTRL		0x10000000
#define KEYSYM_MOD_META		0x08000000

// All the CTV engine names, in string form for the RC and message bar
extern char *ctv_names[];

// Provide a prototype to the parse_rc function in rc.cpp
void parse_rc(const char *file);

#endif // __SVGALIB_RC_H__