From 00c6e3575d56e982e3528c43d73eb588ff3ff7ac Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Sun, 13 Jun 2010 15:27:29 +0200 Subject: 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) --- src/library/loader.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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; -- cgit v1.2.3-54-g00ecf