#include "exec/types.h"
#include "intuition/intuition.h"
#include "workbench/workbench.h"

extern UWORD off_image_data[];
extern UWORD prog_image_data[];

static struct Image prog_image = {
   0, 0,
   53, 42, 2,
   prog_image_data,
   3, 0,
   NULL
};

struct Image off_image = {
   0, 0,
   53, 42, 2,
   off_image_data,
   3, 0,
   NULL
};

static char *tool_types[] = {
   "FILETYPE=HP11",
   NULL
};

char tool[120];

struct DiskObject prog_icon = {
   WB_DISKMAGIC, WB_DISKVERSION,
   { /* gadget */
      NULL,
      0, 0,
      53, 43,
      5,
      3,
      1,
      (APTR)&prog_image,
      NULL
   },
   4,
   tool,
   tool_types,
   NO_ICON_POSITION, NO_ICON_POSITION,
   NULL,
   "",
   0
};

