blob: e0048a28c4877a1529fde3d1558061dc7ef096d4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* IMTOOL.H -- Global definitions for IMTOOL.
*/
#define CURSOR_OFF 3 /* turn cursor off entirely */
#define CURSOR_ON 4 /* turn it back on */
struct fonttab { /* Imtool font descriptor. */
short pointsize;
char ch_xsize, ch_ysize;
short win_xsize, win_ysize;
struct pixfont *pixfont;
char *path;
char *label;
};
|