summaryrefslogtreecommitdiff
path: root/beos/gui.cpp
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2015-04-16 23:47:10 +0100
committerVincent Sanders <vince@kyllikki.org>2015-04-16 23:47:10 +0100
commit839f15fc72166eb63be4f2afc4588d253e88c9f4 (patch)
tree6f0a2a005c65233392fcf4e96729daeadbc55d39 /beos/gui.cpp
parentfb0bd7994491da2a7fa6913c5b5666ed49c6e153 (diff)
downloadnetsurf-839f15fc72166eb63be4f2afc4588d253e88c9f4.tar.gz
netsurf-839f15fc72166eb63be4f2afc4588d253e88c9f4.tar.bz2
convert beos to bitmap operation table
Diffstat (limited to 'beos/gui.cpp')
-rw-r--r--beos/gui.cpp15
1 files changed, 14 insertions, 1 deletions
diff --git a/beos/gui.cpp b/beos/gui.cpp
index 948638217..e479cc205 100644
--- a/beos/gui.cpp
+++ b/beos/gui.cpp
@@ -79,6 +79,7 @@ extern "C" {
#include "beos/schedule.h"
#include "beos/fetch_rsrc.h"
#include "beos/scaffolding.h"
+#include "beos/bitmap.h"
static void *myrealloc(void *ptr, size_t len, void *pw);
@@ -995,7 +996,13 @@ int main(int argc, char** argv)
beos_window_table,
beos_download_table,
&beos_clipboard_table,
- &beos_fetch_table
+ &beos_fetch_table,
+ NULL, /* use POSIX file */
+ NULL, /* default utf8 */
+ NULL, /* default search */
+ NULL, /* default web search */
+ NULL, /* default low level cache persistant storage */
+ beos_bitmap_table
};
ret = netsurf_register(&beos_table);
@@ -1055,6 +1062,12 @@ int gui_init_replicant(int argc, char** argv)
beos_download_table,
&beos_clipboard_table,
&beos_fetch_table
+ NULL, /* use POSIX file */
+ NULL, /* default utf8 */
+ NULL, /* default search */
+ NULL, /* default web search */
+ NULL, /* default low level cache persistant storage */
+ beos_bitmap_table
};
ret = netsurf_register(&beos_table);