/* $Id: controls.h,v 10.1 92/10/06 23:08:12 ca Exp $ */ #ifndef CONTROLS_H #define CONTROLS_H #include "simx1.h" #define X_INITIAL 900 #define Y_INITIAL 149 #define NOTHING 0 #define START 1 #define RUN_STEP 2 #define DELAY 3 #define UPDATE 4 #define DISPLAY 5 #define DESTROY 6 #define LOAD 7 #define SAVE 8 #define SNAP 9 #define RECORD 10 #define PLAY 11 #define PRINT 12 #define QUIT 13 typedef struct _CONTROL { Window window; int wposition; int hposition; char name[30]; char background_color[30]; } CONTROL; #endif /* CONTROLS_H */