blob: f929e1d172960b8d2b2111293ac98c9b750dc0ee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#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((document *newdoc));
extern int LYShowVisitedLinks PARAMS((char **newfile));
extern int showhistory PARAMS((char **newfile));
extern void LYAddVisitedLink PARAMS((document *doc));
extern void LYpop PARAMS((document *doc));
extern void LYpop_num PARAMS((int number, document *doc));
extern void LYpush PARAMS((document *doc, BOOLEAN force_push));
extern void LYstore_message2 PARAMS((CONST char *message, CONST char *argument));
extern void LYstore_message PARAMS((CONST char *message));
extern void LYstatusline_messages_on_exit PARAMS((char **buf));
#endif /* LYHISTORY_H */
|