Import Debian changes 1.23-12
[debian-dgen.git] / rc.h
blob611965b87362cfa97d2b277fb467bedd8db081ef
1 // DGen/SDL v1.23+
2 #ifndef __SVGALIB_RC_H__
3 #define __SVGALIB_RC_H__
5 // Define the different craptv types
6 #define NUM_CTV 4 // Include CTV_OFF
7 #define CTV_OFF 0
8 #define CTV_BLUR 1
9 #define CTV_SCANLINE 2
10 #define CTV_INTERLACE 3
12 // Define OR masks for key modifiers
13 #define KEYSYM_MOD_ALT 0x40000000
14 #define KEYSYM_MOD_SHIFT 0x20000000
15 #define KEYSYM_MOD_CTRL 0x10000000
16 #define KEYSYM_MOD_META 0x08000000
18 // All the CTV engine names, in string form for the RC and message bar
19 extern char *ctv_names[];
21 // Provide a prototype to the parse_rc function in rc.cpp
22 void parse_rc(const char *file);
24 #endif // __SVGALIB_RC_H__