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 / icon.c < prev    next >
C/C++ Source or Header  |  1989-11-16  |  707b  |  52 lines

  1. #include "exec/types.h"
  2. #include "intuition/intuition.h"
  3. #include "workbench/workbench.h"
  4.  
  5. extern UWORD off_image_data[];
  6. extern UWORD prog_image_data[];
  7.  
  8. static struct Image prog_image = {
  9.    0, 0,
  10.    53, 42, 2,
  11.    prog_image_data,
  12.    3, 0,
  13.    NULL
  14. };
  15.  
  16. struct Image off_image = {
  17.    0, 0,
  18.    53, 42, 2,
  19.    off_image_data,
  20.    3, 0,
  21.    NULL
  22. };
  23.  
  24. static char *tool_types[] = {
  25.    "FILETYPE=HP11",
  26.    NULL
  27. };
  28.  
  29. char tool[120];
  30.  
  31. struct DiskObject prog_icon = {
  32.    WB_DISKMAGIC, WB_DISKVERSION,
  33.    { /* gadget */
  34.       NULL,
  35.       0, 0,
  36.       53, 43,
  37.       5,
  38.       3,
  39.       1,
  40.       (APTR)&prog_image,
  41.       NULL
  42.    },
  43.    4,
  44.    tool,
  45.    tool_types,
  46.    NO_ICON_POSITION, NO_ICON_POSITION,
  47.    NULL,
  48.    "",
  49.    0
  50. };
  51.  
  52.