diff options
author | Ryan C. Gordon <icculus@icculus.org> | 2006-11-07 14:36:47 +0000 |
---|---|---|
committer | Ryan C. Gordon <icculus@icculus.org> | 2006-11-07 14:36:47 +0000 |
commit | f99e5395bcfea6cc96ef36860bc23b7979c3f30a (patch) | |
tree | 5561ccc1cf788cddd579deef0e7268e758fe1ebf /test/testloadso.c | |
parent | 0966f84b7634ec87834d3b0201e6108ac606a6c5 (diff) |
Merged r2899:2900 from SDL-1.2 branch to trunk: testloadso program.
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%402223
Diffstat (limited to 'test/testloadso.c')
-rw-r--r-- | test/testloadso.c | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/test/testloadso.c b/test/testloadso.c new file mode 100644 index 00000000..5b94a37b --- /dev/null +++ b/test/testloadso.c @@ -0,0 +1,70 @@ + +/* Test program to test dynamic loading with the loadso subsystem. +*/ + +#include <stdio.h> +#include <stdlib.h> + +#include "SDL.h" + +typedef int (*fntype)(const char *); + +int main(int argc, char *argv[]) +{ + int retval = 0; + int hello = 0; + const char *libname = NULL; + const char *symname = NULL; + void *lib = NULL; + fntype fn = NULL; + + if (argc != 3) { + fprintf(stderr, "USAGE: %s <library> <functionname>\n"); + fprintf(stderr, " %s --hello <library with puts()>\n"); + return 1; + } + + /* Initialize SDL */ + if ( SDL_Init(0) < 0 ) { + fprintf(stderr, "Couldn't initialize SDL: %s\n",SDL_GetError()); + return 2; + } + + if (strcmp(argv[1], "--hello") == 0) { + hello = 1; + libname = argv[2]; + symname = "puts"; + } else { + libname = argv[1]; + symname = argv[2]; + } + + lib = SDL_LoadObject(libname); + if (lib == NULL) { + fprintf(stderr, "SDL_LoadObject('%s') failed: %s\n", + libname, SDL_GetError()); + retval = 3; + } else { + fn = (fntype) SDL_LoadFunction(lib, symname); + if (fn == NULL) { + fprintf(stderr, "SDL_LoadFunction('%s') failed: %s\n", + symname, SDL_GetError()); + retval = 4; + } else { + printf("Found %s in %s at %p\n", symname, libname); + if (hello) { + printf("Calling function...\n"); + fflush(stdout); + fn(" HELLO, WORLD!\n"); + printf("...apparently, we survived. :)\n"); + printf("Unloading library...\n"); + fflush(stdout); + } + } + SDL_UnloadObject(lib); + } + SDL_Quit(); + return(0); +} + + |