summaryrefslogtreecommitdiff
path: root/amiga/plugin.h
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/plugin.h
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/plugin.h')
-rw-r--r--amiga/plugin.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/amiga/plugin.h b/amiga/plugin.h
deleted file mode 100644
index 605d989d4..000000000
--- a/amiga/plugin.h
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * 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/>.
- */
-
-#ifndef NETSURF_AMIGA_PLUGIN_H_
-#define NETSURF_AMIGA_PLUGIN_H_
-
-#include "utils/config.h"
-#include "utils/errors.h"
-
-#ifdef WITH_PLUGIN
-
-nserror plugin_init(void);
-void plugin_fini(void);
-
-#else
-
-#define plugin_init() NSERROR_OK
-#define plugin_fini() ((void) 0)
-
-#endif /* WITH_PLUGIN */
-
-#endif