blob: 5da8f885be674a1dbb27084ed79ae1de8c14cfe7 (
plain) (
tree)
|
|
#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 */
|