blob: be41b96c9039f393b6a38a4115f85d81f3997a81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef COORD_H
#define COORD_H
#include "trans.h"
extern Coordinate coord_eofb;
extern Coordinate coord_eofbepos;
extern Coordinate coord_coud;
extern Coordinate coord_cp;
extern Coordinate coord_cphtr;
extern Coordinate coord_corners;
extern Coordinate coord_cornershtr;
extern Coordinate coord_cornershtrfin;
extern Coordinate coord_epud;
extern Coordinate coord_drud;
extern Coordinate coord_drud_eofb;
extern Coordinate coord_htr_drud;
extern Coordinate coord_htrfin;
void init_coord();
#endif
|