/* Draw the icon in its normal state, without
* a label but including a frame.
*/
struct RastPort *rp;
struct DiskObject *icon;
DrawIconStateA(rp,icon,NULL,0,0,IDS_NORMAL,NULL);
/* The same again, but without a frame. */
DrawIconState(rp,icon,NULL,0,0,IDS_NORMAL,
ICONDRAWA_Frameless,TRUE,
TAG_DONE);
/* Draw the icon in selected state with a border; the
* frame colours come from the given DrawInfo.
*/
struct DrawInfo *drawInfo;
DrawIconState(rp,icon,NULL,0,0,IDS_SELECTED,
ICONDRAWA_DrawInfo,drawInfo,
TAG_DONE);