home *** CD-ROM | disk | FTP | other *** search
/ Archive Magazine 1996 / ARCHIVE_96.iso / discs / shareware / share_42 / penrose / !penrose / h / Display
Text File  |  1991-06-02  |  471b  |  22 lines

  1. /* > h.Display
  2.  *
  3.  * Title:    Display
  4.  * Purpose:  Interface from Control to display
  5.  *           routines e.g. Penrose.
  6.  */
  7.  
  8. typedef struct
  9. {
  10.     wimp_w    w;                     /* Window handle */
  11.     BOOL      displaying;
  12.     int x0, y0, x1, y1;
  13. } display_datas;
  14.  
  15. extern display_datas display_data;
  16.  
  17. extern char display_name[];
  18.  
  19. extern void display_init(int type);
  20. extern void display_menu(void);
  21. extern void display_show(display_datas *display, wimp_redrawstr *r);
  22.