diff options
Diffstat (limited to 'src/LYGetFile.h')
-rw-r--r-- | src/LYGetFile.h | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/src/LYGetFile.h b/src/LYGetFile.h index 28b379e0..f204d07c 100644 --- a/src/LYGetFile.h +++ b/src/LYGetFile.h @@ -3,20 +3,22 @@ #include <LYStructs.h> +#ifdef __cplusplus +extern "C" { +#endif #define NOT_FOUND 0 #define NORMAL 1 #define NULLFILE 3 + extern int getfile(DocInfo *doc, int *target); + extern void srcmode_for_next_retrieval(int); + extern int follow_link_number(int c, + int cur, + DocInfo *doc, + int *num); + extern void add_trusted(char *str, int type); + extern BOOLEAN exec_ok(const char *source, const char *linkpath, int type); -extern int getfile(DocInfo *doc, int *target); -extern void srcmode_for_next_retrieval(int); -extern int follow_link_number(int c, - int cur, - DocInfo *doc, - int *num); -extern void add_trusted(char *str, int type); -extern BOOLEAN exec_ok(const char *source, const char *linkpath, int type); - -extern char *WWW_Download_File; + extern char *WWW_Download_File; /* values for follow_link_number() */ #define DO_LINK_STUFF 1 @@ -30,4 +32,7 @@ extern char *WWW_Download_File; #define ALWAYS_EXEC_PATH 1 #define CGI_PATH 2 -#endif /* LYGETFILE_H */ +#ifdef __cplusplus +} +#endif +#endif /* LYGETFILE_H */ |