Last change
on this file was
c5c522c,
checked in by Edwin Eefting <edwin@datux.nl>, 8 years ago
|
initial commit, transferred from cleaned syn3 svn tree
|
-
Property mode set to
100644
|
File size:
551 bytes
|
Rev | Line | |
---|
[c5c522c] | 1 | #ifndef MAIN_H |
---|
| 2 | #define MAIN_H |
---|
| 3 | |
---|
| 4 | /* |
---|
| 5 | contains a few things that other parts of the program might want |
---|
| 6 | to know about... |
---|
| 7 | */ |
---|
| 8 | |
---|
| 9 | extern char *version; |
---|
| 10 | extern char *build_date; |
---|
| 11 | |
---|
| 12 | void exit_program(int val); |
---|
| 13 | |
---|
| 14 | // 1/8th second is a single time unit... |
---|
| 15 | #define TIME_UNIT 125000 |
---|
| 16 | // But I plan to double the framerate soon, or make it variable... |
---|
| 17 | //#define TIME_UNIT (125000/2) |
---|
| 18 | |
---|
| 19 | typedef struct screen_size |
---|
| 20 | { |
---|
| 21 | char * size; |
---|
| 22 | int wid, hgt; |
---|
| 23 | } screen_size; |
---|
| 24 | |
---|
| 25 | typedef struct parameter |
---|
| 26 | { |
---|
| 27 | char * sh, * lg; // short and long versions |
---|
| 28 | } parameter; |
---|
| 29 | |
---|
| 30 | |
---|
| 31 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.