home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 200-299 / ff274.lzh / HP11 / amiga / indic.c < prev    next >
C/C++ Source or Header  |  1989-11-16  |  897b  |  57 lines

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