summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2010-05-17 22:13:52 +0200
committerAndreas Baumann <abaumann@yahoo.com>2010-05-17 22:13:52 +0200
commit09f417b341229af5137586718440820614f35665 (patch)
tree7104bd2332f4f28aa565c4c7b22ed2f05f6b3499 /src/library
parentfcb0704b0f88583e89023a55d2a8964742b93852 (diff)
downloadwolfbones-09f417b341229af5137586718440820614f35665.tar.gz
wolfbones-09f417b341229af5137586718440820614f35665.tar.bz2
started to add a dynamic library loader, interface and Linux/DLFCN for now
Diffstat (limited to 'src/library')
-rw-r--r--src/library/loader.c35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/library/loader.c b/src/library/loader.c
new file mode 100644
index 0000000..e0bb055
--- /dev/null
+++ b/src/library/loader.c
@@ -0,0 +1,35 @@
+/*
+ Copyright (C) 2010 Andreas Baumann <abaumann@yahoo.com>
+
+ This program 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, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program 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 "library/loader.h"
+#include "port/unused.h"
+
+#include "port/stdlib.h" /* for malloc, free */
+
+struct wolf_library_t {
+ char dummy; /**< dummy */
+};
+
+wolf_library_p wolf_library_load( const char *name, wolf_error_t *error ) {
+ WOLF_UNUSED( name );
+ *error = WOLF_OK;
+ return NULL;
+}
+
+void wolf_library_unload( wolf_library_p library ) {
+ WOLF_UNUSED( library );
+}