summaryrefslogtreecommitdiff
path: root/windows/main.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2015-04-15 22:40:36 +0100
committerVincent Sanders <vince@kyllikki.org>2015-04-15 22:40:36 +0100
commit5c7e8618d5e5f2eb0b37dd937fb5669eeba407d0 (patch)
tree9858e8d542e5b97bd4aded1f78f5acdec6b02e49 /windows/main.c
parent9679561eca26bf792764002465bc0548c5d694bf (diff)
downloadnetsurf-5c7e8618d5e5f2eb0b37dd937fb5669eeba407d0.tar.gz
netsurf-5c7e8618d5e5f2eb0b37dd937fb5669eeba407d0.tar.bz2
Convert windows frontend to using bitmap operation table
Diffstat (limited to 'windows/main.c')
-rw-r--r--windows/main.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/windows/main.c b/windows/main.c
index c5bb240fc..4114297d2 100644
--- a/windows/main.c
+++ b/windows/main.c
@@ -43,6 +43,7 @@
#include "windows/font.h"
#include "windows/filetype.h"
#include "windows/pointers.h"
+#include "windows/bitmap.h"
#include "windows/gui.h"
static char **respaths; /** resource search path vector. */
@@ -130,6 +131,7 @@ WinMain(HINSTANCE hInstance, HINSTANCE hLastInstance, LPSTR lpcli, int ncmd)
.fetch = win32_fetch_table,
.file = win32_file_table,
.utf8 = win32_utf8_table,
+ .bitmap = win32_bitmap_table,
};
win32_fetch_table->get_resource_url = gui_get_resource_url;