Mercurial > sdl-ios-xcode
comparison src/loadso/dummy/SDL_sysloadso.c @ 1895:c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 10 Jul 2006 21:04:37 +0000 |
parents | 92947e3a18db |
children | 3e42ad69f4a3 |
comparison
equal
deleted
inserted
replaced
1894:c69cee13dd76 | 1895:c121d94672cb |
---|---|
26 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ | 26 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ |
27 /* System dependent library loading routines */ | 27 /* System dependent library loading routines */ |
28 | 28 |
29 #include "SDL_loadso.h" | 29 #include "SDL_loadso.h" |
30 | 30 |
31 void *SDL_LoadObject(const char *sofile) | 31 void * |
32 SDL_LoadObject(const char *sofile) | |
32 { | 33 { |
33 const char *loaderror = "SDL_LoadObject() not implemented"; | 34 const char *loaderror = "SDL_LoadObject() not implemented"; |
34 SDL_SetError("Failed loading %s: %s", sofile, loaderror); | 35 SDL_SetError("Failed loading %s: %s", sofile, loaderror); |
35 return(NULL); | 36 return (NULL); |
36 } | 37 } |
37 | 38 |
38 void *SDL_LoadFunction(void *handle, const char *name) | 39 void * |
40 SDL_LoadFunction(void *handle, const char *name) | |
39 { | 41 { |
40 const char *loaderror = "SDL_LoadFunction() not implemented"; | 42 const char *loaderror = "SDL_LoadFunction() not implemented"; |
41 SDL_SetError("Failed loading %s: %s", name, loaderror); | 43 SDL_SetError("Failed loading %s: %s", name, loaderror); |
42 return(NULL); | 44 return (NULL); |
43 } | 45 } |
44 | 46 |
45 void SDL_UnloadObject(void *handle) | 47 void |
48 SDL_UnloadObject(void *handle) | |
46 { | 49 { |
47 /* no-op. */ | 50 /* no-op. */ |
48 } | 51 } |
49 | 52 |
50 #endif /* SDL_LOADSO_DUMMY || SDL_LOADSO_DISABLED */ | 53 #endif /* SDL_LOADSO_DUMMY || SDL_LOADSO_DISABLED */ |
54 /* vi: set ts=4 sw=4 expandtab: */ |