summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2010-05-18 18:25:41 +0200
committerAndreas Baumann <abaumann@yahoo.com>2010-05-18 18:25:41 +0200
commit686ee56fc5e4b8a3573dbad3a0e997fe89ba71a7 (patch)
tree91617a193bebb5a7d2946a065d71562c9cf530ba /src
parent9d6b4ab6fee3d65f3a11a5f19c410e5abe4ba322 (diff)
downloadwolfbones-686ee56fc5e4b8a3573dbad3a0e997fe89ba71a7.tar.gz
wolfbones-686ee56fc5e4b8a3573dbad3a0e997fe89ba71a7.tar.bz2
now stuck in dlsym/dereferencing type-punned pointer will break strict-aliasing rules beautiness :-)
Diffstat (limited to 'src')
-rw-r--r--src/library/loader.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/library/loader.c b/src/library/loader.c
index ad83bda..cf5f0e3 100644
--- a/src/library/loader.c
+++ b/src/library/loader.c
@@ -85,12 +85,22 @@ wolf_error_t wolf_library_unload( wolf_library_p l ) {
return WOLF_OK;
}
-char *wolf_library_errmsg( const wolf_error_t error, const wolf_library_p l, char *buf, size_t buflen ) {
+char *wolf_library_errmsg( const wolf_error_t error, const wolf_library_p library, char *buf, size_t buflen ) {
(void)wolf_error_msg( error, buf, buflen );
strncat( buf, " - ", buflen - strlen( buf ) );
if( error == WOLF_ERR_INTERNAL ) {
- strncat( buf, l->errbuf, buflen - strlen( buf ) );
+ strncat( buf, library->errbuf, buflen - strlen( buf ) );
}
return buf;
}
+
+void *wolf_library_get( const wolf_library_p l, const char *name, wolf_error_t *error ) {
+ void *ret;
+
+ ret = dlsym( l->handle, name );
+
+ *error = WOLF_OK;
+ return ret;
+}
+