File: main.h

package info (click to toggle)
gle 3.1.0-5.3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 3,068 kB
  • ctags: 1,029
  • sloc: ansic: 10,002; sh: 8,455; makefile: 366; python: 102
file content (18 lines) | stat: -rw-r--r-- 302 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

extern void DrawStuff (void);
extern void InitStuff (void);

/* most recent mouse position */
extern float lastx;
extern float lasty;

#ifndef NULL
#define NULL ((void *) 0x0)
#endif /* NULL */

/* Some <math.h> files do not define M_PI... */
#ifndef M_PI
#define M_PI 3.14159265358979323846
#endif