comparison include/SDL_loadso.h @ 1668:4da1ee79c9af SDL-1.3

more tweaking indent options
author Sam Lantinga <slouken@libsdl.org>
date Mon, 29 May 2006 04:04:35 +0000
parents 782fd950bd46
children
comparison
equal deleted inserted replaced
1667:1fddae038bc8 1668:4da1ee79c9af
55 55
56 /* This function dynamically loads a shared object and returns a pointer 56 /* This function dynamically loads a shared object and returns a pointer
57 * to the object handle (or NULL if there was an error). 57 * to the object handle (or NULL if there was an error).
58 * The 'sofile' parameter is a system dependent name of the object file. 58 * The 'sofile' parameter is a system dependent name of the object file.
59 */ 59 */
60 extern DECLSPEC void *SDLCALL SDL_LoadObject (const char *sofile); 60 extern DECLSPEC void *SDLCALL SDL_LoadObject(const char *sofile);
61 61
62 /* Given an object handle, this function looks up the address of the 62 /* Given an object handle, this function looks up the address of the
63 * named function in the shared object and returns it. This address 63 * named function in the shared object and returns it. This address
64 * is no longer valid after calling SDL_UnloadObject(). 64 * is no longer valid after calling SDL_UnloadObject().
65 */ 65 */
66 extern DECLSPEC void *SDLCALL SDL_LoadFunction (void *handle, 66 extern DECLSPEC void *SDLCALL SDL_LoadFunction(void *handle,
67 const char *name); 67 const char *name);
68 68
69 /* Unload a shared object from memory */ 69 /* Unload a shared object from memory */
70 extern DECLSPEC void SDLCALL SDL_UnloadObject (void *handle); 70 extern DECLSPEC void SDLCALL SDL_UnloadObject(void *handle);
71 71
72 /* Ends C function definitions when using C++ */ 72 /* Ends C function definitions when using C++ */
73 #ifdef __cplusplus 73 #ifdef __cplusplus
74 /* *INDENT-OFF* */ 74 /* *INDENT-OFF* */
75 } 75 }