home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Musik / Misc / Amster / Source / include / url.h < prev   
Encoding:
C/C++ Source or Header  |  2000-01-01  |  417 b   |  28 lines

  1. /*
  2. ** Clickable URL Class Header
  3. */
  4.  
  5. #include <sys/types.h>
  6.  
  7. #include "include/mui.h"
  8.  
  9. #ifndef AMSTER_URL_H
  10. #define AMSTER_URL_H
  11.  
  12. struct urldata {
  13.     char *name;
  14.     char *href;
  15.     int len,pixlen;
  16.     long color;
  17. };
  18.  
  19. MUIF url_dispatch(REG(a0) struct IClass *cl,REG(a2) Object *obj,REG(a1) Msg msg);
  20.  
  21. #define URL_NAME 0xf001
  22. #define URL_HREF 0xf002
  23. #define URL_HELP 0xf003
  24. #define URL_CLICKED 0xf005
  25.  
  26.  
  27. #endif    /* AMSTER_URL_H */
  28.