From 208b98bb44b986e62ff0f80b7e50c9da3e12cb8f Mon Sep 17 00:00:00 2001 From: Sven Weidauer Date: Sat, 5 Mar 2011 09:49:15 +0000 Subject: Created content handler CONTENT_APPLE_IMAGE for Mac OS X that can handle all image file formats supported by Apples ImageIO framework. Right now used only for JPEG to get rid of libjpeg dependency. svn path=/trunk/netsurf/; revision=11911 --- content/content_protected.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'content/content_protected.h') diff --git a/content/content_protected.h b/content/content_protected.h index 38f381583..50ece50a5 100644 --- a/content/content_protected.h +++ b/content/content_protected.h @@ -81,7 +81,9 @@ #ifdef WITH_AMIGA_ICON #include "amiga/icon.h" #endif - +#ifdef WITH_APPLE_IMAGE +#include "cocoa/apple_image.h" +#endif struct bitmap; struct content; @@ -158,6 +160,9 @@ struct content { #endif #ifdef WITH_AMIGA_ICON struct content_amiga_icon_data amiga_icon; +#endif +#ifdef WITH_APPLE_IMAGE + struct content_apple_image_data apple_image; #endif } data; -- cgit v1.2.3