summaryrefslogtreecommitdiff
path: root/amiga/icon.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2011-05-06 20:40:09 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2011-05-06 20:40:09 +0000
commite71691bae890040b83cfd54a2d9a1097d5026866 (patch)
tree96b2680dc6559ca0ab88fa0b6a533c13b7c9487e /amiga/icon.h
parente77b1a29550e4753f771848705975295a6ebe99e (diff)
downloadnetsurf-e71691bae890040b83cfd54a2d9a1097d5026866.tar.gz
netsurf-e71691bae890040b83cfd54a2d9a1097d5026866.tar.bz2
Merge branches/jmb/content-factory to trunk
svn path=/trunk/netsurf/; revision=12283
Diffstat (limited to 'amiga/icon.h')
-rw-r--r--amiga/icon.h20
1 files changed, 7 insertions, 13 deletions
diff --git a/amiga/icon.h b/amiga/icon.h
index bd9fb501d..646c50653 100644
--- a/amiga/icon.h
+++ b/amiga/icon.h
@@ -24,23 +24,17 @@
#define AMIGA_ICON_H
#include "utils/config.h"
-#ifdef WITH_AMIGA_ICON
+#include "utils/errors.h"
-#include <stdbool.h>
-#include "content/hlcache.h"
+#ifdef WITH_AMIGA_ICON
-struct rect;
+nserror amiga_icon_init(void);
+void amiga_icon_fini(void);
-struct content_amiga_icon_data {
-/* empty */
-};
+#else
-bool amiga_icon_convert(struct content *c);
-void amiga_icon_destroy(struct content *c);
-bool amiga_icon_redraw(struct content *c, int x, int y,
- int width, int height, const struct rect *clip,
- float scale, colour background_colour);
-bool amiga_icon_clone(const struct content *old, struct content *new_content);
+#define amiga_icon_init() NSERROR_OK
+#define amiga_icon_fini() ((void) 0)
#endif /* WITH_AMIGA_ICON */