summaryrefslogtreecommitdiff
path: root/amiga/libs.c
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2014-11-08 19:23:02 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2014-11-09 00:06:55 +0000
commit9601ddacaddfd233c630283adb0eba05ccfbe1da (patch)
tree8ab72bca5f766c94f3f00440d16ebbea92dc1a22 /amiga/libs.c
parent4c7ef8db3f75807644d61aca5211f3db4e967657 (diff)
downloadnetsurf-9601ddacaddfd233c630283adb0eba05ccfbe1da.tar.gz
netsurf-9601ddacaddfd233c630283adb0eba05ccfbe1da.tar.bz2
Add new libs file to centrally open/close required libraries, and move a couple of the existing manual opens to it.
Diffstat (limited to 'amiga/libs.c')
-rw-r--r--amiga/libs.c41
1 files changed, 41 insertions, 0 deletions
diff --git a/amiga/libs.c b/amiga/libs.c
new file mode 100644
index 000000000..0330e664d
--- /dev/null
+++ b/amiga/libs.c
@@ -0,0 +1,41 @@
+/*
+ * Copyright 2014 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/>.
+ */
+
+#include "libs.h"
+
+void ami_libs_open(void)
+{
+ if((KeymapBase = OpenLibrary("keymap.library",37))) {
+ IKeymap = (struct KeymapIFace *)GetInterface(KeymapBase, "main", 1, NULL);
+ }
+
+ if((ApplicationBase = OpenLibrary("application.library", 53))) {
+ IApplication = (struct ApplicationIFace *)GetInterface(ApplicationBase, "application", 2, NULL);
+ }
+}
+
+void ami_libs_close(void)
+{
+
+ if(IApplication) DropInterface((struct Interface *)IApplication);
+ if(ApplicationBase) CloseLibrary(ApplicationBase);
+
+ if(IKeymap) DropInterface((struct Interface *)IKeymap);
+ if(KeymapBase) CloseLibrary(KeymapBase);
+}
+