home *** CD-ROM | disk | FTP | other *** search
- /* > h.Display
- *
- * Title: Display
- * Purpose: Interface from Control to display
- * routines e.g. Penrose.
- */
-
- typedef struct
- {
- wimp_w w; /* Window handle */
- BOOL displaying;
- int x0, y0, x1, y1;
- } display_datas;
-
- extern display_datas display_data;
-
- extern char display_name[];
-
- extern void display_init(int type);
- extern void display_menu(void);
- extern void display_show(display_datas *display, wimp_redrawstr *r);
-