home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 109 / EnigmaAmiga109CD.iso / software / on-line / amster / src / search.h < prev    next >
C/C++ Source or Header  |  2000-01-21  |  624b  |  33 lines

  1. /*
  2. ** Search Header
  3. */
  4.  
  5. #include <sys/types.h>
  6.  
  7. #include "mui.h"
  8.  
  9. #ifndef AMSTER_SEARCH_H
  10. #define AMSTER_SEARCH_H
  11.  
  12. struct searchdata {
  13.     u_long *str,*maxstr,*snick;
  14.     u_long *pop;
  15.     u_long *popspeed,*popspeedval,*popbit,*popbitval,*popfreq,*popfreqval;
  16.     u_long *result,*list;
  17.     u_long *rembut,*clrbut,*dlbut;
  18. };
  19.  
  20. MUIF search_dispatch(REG(a0) struct IClass *cl,REG(a2) Object *obj,REG(a1) Msg msg);
  21.  
  22. #define SEARCH_GO 0x5001
  23. #define SEARCH_CLEAR 0x5002
  24. #define SEARCH_DOWNLOAD 0x5003
  25. #define SEARCH_NICK 0x5004
  26. #define SEARCH_FOUND 0x5005
  27. #define SEARCH_RESET 0x5006
  28. #define SEARCH_REFRESH 0x5007
  29.  
  30.  
  31.  
  32. #endif    /* AMSTER_SEARCH_H */
  33.