File: vchar.h

package info (click to toggle)
vftool 2.0alpha-2
  • links: PTS
  • area: main
  • in suites: sarge, woody
  • size: 376 kB
  • ctags: 770
  • sloc: ansic: 2,748; makefile: 186; sh: 79
file content (18 lines) | stat: -rw-r--r-- 253 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#define	UNIT	1048576		/* 1 fixpoint real = 2^20 */
#define	VFRATIO	UNIT

#define	VSY	2
#define	VHIRA	3
#define	VKATA	4

enum vop {
    vop_shift,
    vop_rot,
    vop_mirror,
};
struct vchar {
    int cc;
    int f, c;
    enum vop op;
    int x, y;
};