blob: fe12c1a3b64b8e015410ebbf71c9ad76bb806638 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef LYHISTORY_H
#define LYHISTORY_H
#ifndef LYSTRUCTS_H
#include <LYStructs.h>
#endif /* LYSTRUCTS_H */
extern BOOLEAN LYwouldPush PARAMS((CONST char *title, CONST char *docurl));
extern BOOLEAN historytarget PARAMS((DocInfo *newdoc));
extern int LYShowVisitedLinks PARAMS((char **newfile));
extern int LYhist_next PARAMS((DocInfo *doc, DocInfo *newdoc));
extern int LYpush PARAMS((DocInfo *doc, BOOLEAN force_push));
extern int showhistory PARAMS((char **newfile));
extern void LYAddVisitedLink PARAMS((DocInfo *doc));
extern void LYFreePostData PARAMS((DocInfo * data));
extern void LYFreeDocInfo PARAMS((DocInfo * data));
extern void LYhist_prev PARAMS((DocInfo *doc));
extern void LYhist_prev_register PARAMS((DocInfo *doc));
extern void LYpop PARAMS((DocInfo *doc));
extern void LYpop_num PARAMS((int number, DocInfo *doc));
extern void LYstatusline_messages_on_exit PARAMS((char **buf));
extern void LYstore_message PARAMS((CONST char *message));
extern void LYstore_message2 PARAMS((CONST char *message, CONST char *argument));
extern int nhist_extra;
#endif /* LYHISTORY_H */
|