Mercurial > sdl-ios-xcode
comparison src/loadso/dummy/SDL_sysloadso.c @ 1662:782fd950bd46 SDL-1.3
Revamp of the video system in progress - adding support for multiple displays, multiple windows, and a full video mode selection API.
WARNING: None of the video drivers have been updated for the new API yet! The API is still under design and very fluid.
The code is now run through a consistent indent format:
indent -i4 -nut -nsc -br -ce
The headers are being converted to automatically generate doxygen documentation.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sun, 28 May 2006 13:04:16 +0000 |
parents | 92947e3a18db |
children | 4da1ee79c9af |
comparison
equal
deleted
inserted
replaced
1661:281d3f4870e5 | 1662:782fd950bd46 |
---|---|
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: */ |