home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Linux / Divers / lynx2.8.1dev.10.tar.gz / lynx2.8.1dev.10.tar / lynx2-8 / src / LYJump.h < prev    next >
C/C++ Source or Header  |  1997-04-03  |  553b  |  30 lines

  1.  
  2. #ifndef LYJUMP_H
  3. #define LYJUMP_H
  4.  
  5. typedef struct _JumpDatum {
  6.     char *key;
  7.     char *url;
  8. } JumpDatum;
  9.  
  10. struct JumpTable { 
  11.     int key;
  12.     int nel;
  13.     char *msg;
  14.     char *file;
  15.     char *shortcut;
  16.     HTList *history;
  17.     JumpDatum *table;
  18.     struct JumpTable *next;
  19.     char *mp;
  20. };
  21.  
  22. extern struct JumpTable *JThead;
  23. extern void LYJumpTable_free NOPARAMS;
  24. extern void LYAddJumpShortcut PARAMS((HTList *the_history, char *shortcut));
  25. extern BOOL LYJumpInit PARAMS((char *config));
  26. extern char *LYJump PARAMS((int key));
  27.  
  28. #endif /* LYJUMP_H */
  29.  
  30.