home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 5 / DATAFILE_PDCD5.iso / utilities / h / hp11 / Amiga_Code / c / strucfrag < prev    next >
Encoding:
Text File  |  1992-05-07  |  476 b   |  12 lines

  1. /* The following structure gathers together all 'global' information that is
  2. needed by event handlers and the like. We can then use the various 'handle'
  3. parameters as a pointer to this structure. */
  4.  
  5. typedef struct
  6. {
  7.   menu      menu;                  /* The menu tree */
  8.   wimp_w    whandle;               /* Window handle */
  9.   BOOL      loaded;                /* Status flag: file loaded? */
  10.   char      file[hp11_max_name]; /* Name of file currently loaded */
  11. } hp11_data;
  12.