summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2010-06-13 15:27:29 +0200
committerAndreas Baumann <abaumann@yahoo.com>2010-06-13 15:27:29 +0200
commit00c6e3575d56e982e3528c43d73eb588ff3ff7ac (patch)
treed206ba1bdf75a009d07d8d4f29a806559d6d7b1d /src
parent5c8df05a029bd9616d517945153a95c6eefc8025 (diff)
downloadwolfbones-00c6e3575d56e982e3528c43d73eb588ff3ff7ac.tar.gz
wolfbones-00c6e3575d56e982e3528c43d73eb588ff3ff7ac.tar.bz2
renamed wolf_library_get_func to wolf_library_get as we can load
variables in DLLs added tests for variables and structs in DLLs (Windows)
Diffstat (limited to 'src')
-rw-r--r--src/library/loader.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/loader.c b/src/library/loader.c
index ec4c53b..dbf0fe5 100644
--- a/src/library/loader.c
+++ b/src/library/loader.c
@@ -138,7 +138,7 @@ char *wolf_library_error_msg( const wolf_library_p library, char *buf, size_t b
return buf;
}
-WOLF_LIBRARY_FUNCPTR wolf_library_get_func( const wolf_library_p l, const char *name, wolf_error_t *error ) {
+WOLF_LIBRARY_FUNCPTR wolf_library_get( const wolf_library_p l, const char *name, wolf_error_t *error ) {
WOLF_LIBRARY_FUNCPTR ret;
#if !defined _WIN32
WOLF_LIBRARY_DLERROR_CONST char *err = NULL;