summaryrefslogtreecommitdiff
path: root/windows/gui.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-01-22 23:19:57 +0000
committerVincent Sanders <vince@kyllikki.org>2014-01-23 00:00:18 +0000
commit047569339406f2be1637ae4cee5dd0c9a9c2328f (patch)
tree3d3909b4bc3d27cd7a9e146d32539ce752b33310 /windows/gui.c
parent4684e9665d2ddff50f4a8e9a16d73224d2617180 (diff)
downloadnetsurf-047569339406f2be1637ae4cee5dd0c9a9c2328f.tar.gz
netsurf-047569339406f2be1637ae4cee5dd0c9a9c2328f.tar.bz2
create table for fetcher operations and move all operations into it
Diffstat (limited to 'windows/gui.c')
-rw-r--r--windows/gui.c15
1 files changed, 13 insertions, 2 deletions
diff --git a/windows/gui.c b/windows/gui.c
index f476c5ae9..a6b2facaf 100644
--- a/windows/gui.c
+++ b/windows/gui.c
@@ -56,6 +56,7 @@
#include "windows/schedule.h"
#include "windows/findfile.h"
#include "windows/windbg.h"
+#include "windows/filetype.h"
HINSTANCE hInstance; /** win32 application instance handle. */
@@ -1868,6 +1869,7 @@ static struct gui_window_table window_table = {
struct gui_window_table *win32_window_table = &window_table;
+
static struct gui_clipboard_table clipboard_table = {
.get = gui_get_clipboard,
.set = gui_set_clipboard,
@@ -1875,10 +1877,19 @@ static struct gui_clipboard_table clipboard_table = {
struct gui_clipboard_table *win32_clipboard_table = &clipboard_table;
-static struct gui_browser_table browser_table = {
- .poll = gui_poll,
+
+static struct gui_fetch_table fetch_table = {
.filename_from_path = filename_from_path,
.path_add_part = path_add_part,
+ .filetype = fetch_filetype,
+
+ .mimetype = fetch_mimetype,
+};
+struct gui_fetch_table *win32_fetch_table = &fetch_table;
+
+
+static struct gui_browser_table browser_table = {
+ .poll = gui_poll,
};
struct gui_browser_table *win32_browser_table = &browser_table;