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

« back to all changes in this revision

Viewing changes to src/LYLocal.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 LYLOCAL_H
 
2
#define LYLOCAL_H
 
3
 
 
4
#ifdef DIRED_SUPPORT
 
5
 
 
6
#include <HTUtils.h>
 
7
 
 
8
/* Special return code for LYMainLoop.c */
 
9
#define PERMIT_FORM_RESULT (-99)
 
10
 
 
11
extern int local_create PARAMS((DocInfo *doc));
 
12
extern int local_modify PARAMS((DocInfo *doc, char **newpath));
 
13
extern int local_remove PARAMS((DocInfo *doc));
 
14
#ifdef OK_INSTALL
 
15
extern BOOLEAN local_install PARAMS((char *destpath, char *srcpath, char **newpath));
 
16
#endif
 
17
 
 
18
/* MainLoop needs to know about this one for atexit cleanup */
 
19
extern void clear_tags NOPARAMS;
 
20
 
 
21
extern int dired_options PARAMS ((DocInfo *doc, char ** newfile));
 
22
extern int local_dired PARAMS((DocInfo *doc));
 
23
extern void add_menu_item PARAMS((char *str));
 
24
extern void reset_dired_menu NOPARAMS;
 
25
extern void showtags PARAMS((HTList *tag));
 
26
extern void tagflag PARAMS((int flag, int cur)); 
 
27
 
 
28
#endif /* DIRED_SUPPORT */
 
29
 
 
30
#endif /* LYLOCAL_H */