1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/include/SDL_loadso.h Wed Mar 06 05:20:11 2002 +0000
1.3 @@ -0,0 +1,61 @@
1.4 +/*
1.5 + SDL - Simple DirectMedia Layer
1.6 + Copyright (C) 1997, 1998, 1999, 2000, 2001 Sam Lantinga
1.7 +
1.8 + This library is free software; you can redistribute it and/or
1.9 + modify it under the terms of the GNU Library General Public
1.10 + License as published by the Free Software Foundation; either
1.11 + version 2 of the License, or (at your option) any later version.
1.12 +
1.13 + This library is distributed in the hope that it will be useful,
1.14 + but WITHOUT ANY WARRANTY; without even the implied warranty of
1.15 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1.16 + Library General Public License for more details.
1.17 +
1.18 + You should have received a copy of the GNU Library General Public
1.19 + License along with this library; if not, write to the Free
1.20 + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
1.21 +
1.22 + Sam Lantinga
1.23 + slouken@libsdl.org
1.24 +*/
1.25 +
1.26 +#ifdef SAVE_RCSID
1.27 +static char rcsid =
1.28 + "@(#) $Id$";
1.29 +#endif
1.30 +
1.31 +/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1.32 +/* System dependent library loading routines */
1.33 +
1.34 +#ifndef _SDL_loadso_h
1.35 +#define _SDL_loadso_h
1.36 +
1.37 +#include "begin_code.h"
1.38 +/* Set up for C function definitions, even when using C++ */
1.39 +#ifdef __cplusplus
1.40 +extern "C" {
1.41 +#endif
1.42 +
1.43 +/* This function dynamically loads a shared object and returns a pointer
1.44 + * to the object handle (or NULL if there was an error).
1.45 + * The 'sofile' parameter is a system dependent name of the object file.
1.46 + */
1.47 +extern DECLSPEC void *SDL_LoadObject(const char *sofile);
1.48 +
1.49 +/* Given an object handle, this function looks up the address of the
1.50 + * named function in the shared object and returns it. This address
1.51 + * is no longer valid after calling SDL_UnloadObject().
1.52 + */
1.53 +extern DECLSPEC void *SDL_LoadFunction(void *handle, const char *name);
1.54 +
1.55 +/* Unload a shared object from memory */
1.56 +extern DECLSPEC void SDL_UnloadObject(void *handle);
1.57 +
1.58 +/* Ends C function definitions when using C++ */
1.59 +#ifdef __cplusplus
1.60 +}
1.61 +#endif
1.62 +#include "close_code.h"
1.63 +
1.64 +#endif /* _SDL_loadso_h */