1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
/* This file contains the various things related to the main body of the
* program. It is pretty sparse, and really shouldn't be too cluttered
* up.
*
*/
/* This structure contains information relevant to your program.
* You should fill it in with information that you need.
*
*/
typedef struct MyProgram
{
int var1, var2;
int curstate;
int flags;
}MyProgram;
/* protos */
void init_display(int argc, char **argv, MyProgram *me);
#ifndef TRUE
#define TRUE 1
#define FALSE 0
#endif
|