summaryrefslogtreecommitdiff
path: root/content/dirlist.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2010-09-09 21:45:59 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2010-09-09 21:45:59 +0000
commit2077918805c175ecefeb25dd38f78d2d5b3a3ca2 (patch)
tree73fd0d27d042d97aa9fe67032697bd21f8deee9a /content/dirlist.h
parentb9773d34bb523d3bac09f328900e60b02feea97b (diff)
downloadnetsurf-2077918805c175ecefeb25dd38f78d2d5b3a3ca2.tar.gz
netsurf-2077918805c175ecefeb25dd38f78d2d5b3a3ca2.tar.bz2
Merge branches/vince/netsurf-file-fetcher to trunk
r=jmb svn path=/trunk/netsurf/; revision=10750
Diffstat (limited to 'content/dirlist.h')
-rw-r--r--content/dirlist.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/content/dirlist.h b/content/dirlist.h
index 9b369144e..7228ae231 100644
--- a/content/dirlist.h
+++ b/content/dirlist.h
@@ -33,15 +33,15 @@
#define DIRLIST_NO_DATE_COLUMN 1 << 3
#define DIRLIST_NO_TIME_COLUMN 1 << 4
-const char* dirlist_generate_top(void);
+bool dirlist_generate_top(char *buffer, int buffer_length);
bool dirlist_generate_hide_columns(int flags, char *buffer, int buffer_length);
-bool dirlist_generate_title(char *title, char *buffer, int buffer_length);
+bool dirlist_generate_title(const char *title, char *buffer, int buffer_length);
bool dirlist_generate_parent_link(char *parent, char *buffer,
int buffer_length);
bool dirlist_generate_headings(char *buffer, int buffer_length);
bool dirlist_generate_row(bool even, bool directory, char *url, char *name,
- char *type, long long size, char *date, char *time,
+ const char *mimetype, long long size, char *date, char *time,
char *buffer, int buffer_length);
-const char* dirlist_generate_bottom(void);
+bool dirlist_generate_bottom(char *buffer, int buffer_length);
#endif