/* ** Clickable URL Class Header */ #include #include "include/mui.h" #ifndef AMSTER_URL_H #define AMSTER_URL_H struct urldata { char *name; char *href; int len,pixlen; long color; }; MUIF url_dispatch(REG(a0) struct IClass *cl,REG(a2) Object *obj,REG(a1) Msg msg); #define URL_NAME 0xf001 #define URL_HREF 0xf002 #define URL_HELP 0xf003 #define URL_CLICKED 0xf005 #endif /* AMSTER_URL_H */