summaryrefslogtreecommitdiff
path: root/amiga/datatypes.c
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2011-05-06 22:42:37 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2011-05-06 22:42:37 +0000
commit208363fe2a8a519915123d80f3ca02452aa76eb3 (patch)
treeb168143a3383e7ad99ba15c92e018efc185d7800 /amiga/datatypes.c
parente71691bae890040b83cfd54a2d9a1097d5026866 (diff)
downloadnetsurf-208363fe2a8a519915123d80f3ca02452aa76eb3.tar.gz
netsurf-208363fe2a8a519915123d80f3ca02452aa76eb3.tar.bz2
Rename DataTypes related code/files/defines to avoid confusion and aid adding support
for other DataType classes. Disable MNG/WebP by default as they aren't common and the required libs are quite large; DataTypes can handle these formats for now. svn path=/trunk/netsurf/; revision=12284
Diffstat (limited to 'amiga/datatypes.c')
-rw-r--r--amiga/datatypes.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/amiga/datatypes.c b/amiga/datatypes.c
new file mode 100644
index 000000000..518b0347c
--- /dev/null
+++ b/amiga/datatypes.c
@@ -0,0 +1,36 @@
+/*
+ * Copyright 2011 Chris Young <chris@unsatisfactorysoftware.co.uk>
+ *
+ * This file is part of NetSurf, http://www.netsurf-browser.org/
+ *
+ * NetSurf is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * NetSurf is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifdef WITH_AMIGA_DATATYPES
+#include "amiga/datatypes.h"
+
+nserror amiga_datatypes_init(void)
+{
+ nserror err = NSERROR_OK;
+
+ err = amiga_dt_picture_init();
+ if(err != NSERROR_OK) return err;
+
+ return NSERROR_OK;
+}
+
+void amiga_datatypes_fini(void)
+{
+ amiga_dt_picture_fini();
+}
+#endif