summaryrefslogtreecommitdiff
path: root/content/dirlist.h
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2015-02-26 16:58:41 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2015-02-26 16:58:41 +0000
commitac636100e8d87a9e0080a258d90f1622bd1e5b8b (patch)
tree876afb1c4b10d75fc68b7b2e05317bb50fc80ced /content/dirlist.h
parent4402bcf779973bbefc264e125010ab51d08de9b4 (diff)
downloadnetsurf-ac636100e8d87a9e0080a258d90f1622bd1e5b8b.tar.gz
netsurf-ac636100e8d87a9e0080a258d90f1622bd1e5b8b.tar.bz2
Remove include of nsurl from corestrings.h
Diffstat (limited to 'content/dirlist.h')
-rw-r--r--content/dirlist.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/content/dirlist.h b/content/dirlist.h
index 687f50688..5cdaf7532 100644
--- a/content/dirlist.h
+++ b/content/dirlist.h
@@ -33,15 +33,17 @@
#define DIRLIST_NO_DATE_COLUMN 1 << 3
#define DIRLIST_NO_TIME_COLUMN 1 << 4
+struct nsurl;
+
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(const char *title, char *buffer, int buffer_length);
bool dirlist_generate_parent_link(const char *parent, char *buffer,
int buffer_length);
bool dirlist_generate_headings(char *buffer, int buffer_length);
-bool dirlist_generate_row(bool even, bool directory, nsurl *url, char *name,
- const char *mimetype, long long size, char *date, char *time,
- char *buffer, int buffer_length);
+bool dirlist_generate_row(bool even, bool directory, struct nsurl *url,
+ char *name, const char *mimetype, long long size, char *date,
+ char *time, char *buffer, int buffer_length);
bool dirlist_generate_bottom(char *buffer, int buffer_length);
#endif