blob: 7bcc05beeeed868acb45de7596764f0fa37ec99f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef DIMENSIONS_H
#define DIMENSIONS_H
extern floatish borderheight;
extern floatish borderwidth;
extern floatish borderspace;
extern floatish borderthick;
extern floatish titleheight;
extern floatish titlewidth;
extern floatish titletextspace;
extern floatish graphx0;
extern floatish graphy0;
extern floatish graphheight;
extern floatish graphwidth;
void Dimensions PROTO((void));
floatish StringSize PROTO((char *));
#endif /* DIMENSIONS_H */
|