~ubuntu-branches/ubuntu/edgy/lynx/edgy

« back to all changes in this revision

Viewing changes to src/LYJump.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2004-09-16 12:14:10 UTC
  • Revision ID: james.westby@ubuntu.com-20040916121410-cz1gu92c4nqfeyrg
Tags: upstream-2.8.5
ImportĀ upstreamĀ versionĀ 2.8.5

Show diffs side-by-side

added added

removed removed

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