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 >
Wrap
C/C++ Source or Header
|
1997-04-03
|
553b
|
30 lines
#ifndef LYJUMP_H
#define LYJUMP_H
typedef struct _JumpDatum {
char *key;
char *url;
} JumpDatum;
struct JumpTable {
int key;
int nel;
char *msg;
char *file;
char *shortcut;
HTList *history;
JumpDatum *table;
struct JumpTable *next;
char *mp;
};
extern struct JumpTable *JThead;
extern void LYJumpTable_free NOPARAMS;
extern void LYAddJumpShortcut PARAMS((HTList *the_history, char *shortcut));
extern BOOL LYJumpInit PARAMS((char *config));
extern char *LYJump PARAMS((int key));
#endif /* LYJUMP_H */