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

  1. /*->c.indic */
  2. /* These are the structures which define the shape of the indicatos. The
  3.   actual data is in indic_data.c (it is separate because it MUST reside in
  4.   chip memory. */
  5. #include "exec/types.h"
  6. #include "intuition/intuition.h"
  7.  
  8. extern UWORD fData[], gData[], GData[], RADData[], PRGMData[], USERData[];
  9.  
  10. struct Image fImage = {
  11.    0, 0, /* Position */
  12.    3, 6, 2, /* width, height, depth */
  13.    fData, /* Shape data */
  14.    0, 0, /* PlanePick, PlaneOnOff, defined by SetCol */
  15.    NULL /* NextImage */
  16. };
  17.  
  18. struct Image gImage = {
  19.    0, 1,
  20.    4, 6, 2,
  21.    gData,
  22.    0, 0,
  23.    NULL
  24. };
  25.  
  26. struct Image GImage = {
  27.    0, 0,
  28.    4, 6, 2,
  29.    GData,
  30.    0, 0,
  31.    NULL
  32. };
  33.  
  34. struct Image RADImage = {
  35.    0, 0,
  36.    14, 6, 2,
  37.    RADData,
  38.    0, 0,
  39.    NULL
  40. };
  41.  
  42. struct Image PRGMImage = {
  43.    0, 0,
  44.    19, 6, 2,
  45.    PRGMData,
  46.    0, 0,
  47.    NULL
  48. };
  49.  
  50. struct Image USERImage = {
  51.    0, 0,
  52.    19, 6, 2,
  53.    USERData,
  54.    0, 0,
  55.    NULL
  56. };
  57.  
  58.