SDL standard library

Dependents:   H261_encoder

Committer:
miruga27
Date:
Wed Sep 07 18:46:53 2016 +0000
Revision:
0:dda4f4550403
7/09/2016;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
miruga27 0:dda4f4550403 1 /*
miruga27 0:dda4f4550403 2 Simple DirectMedia Layer
miruga27 0:dda4f4550403 3 Copyright (C) 1997-2014 Sam Lantinga <slouken@libsdl.org>
miruga27 0:dda4f4550403 4
miruga27 0:dda4f4550403 5 This software is provided 'as-is', without any express or implied
miruga27 0:dda4f4550403 6 warranty. In no event will the authors be held liable for any damages
miruga27 0:dda4f4550403 7 arising from the use of this software.
miruga27 0:dda4f4550403 8
miruga27 0:dda4f4550403 9 Permission is granted to anyone to use this software for any purpose,
miruga27 0:dda4f4550403 10 including commercial applications, and to alter it and redistribute it
miruga27 0:dda4f4550403 11 freely, subject to the following restrictions:
miruga27 0:dda4f4550403 12
miruga27 0:dda4f4550403 13 1. The origin of this software must not be misrepresented; you must not
miruga27 0:dda4f4550403 14 claim that you wrote the original software. If you use this software
miruga27 0:dda4f4550403 15 in a product, an acknowledgment in the product documentation would be
miruga27 0:dda4f4550403 16 appreciated but is not required.
miruga27 0:dda4f4550403 17 2. Altered source versions must be plainly marked as such, and must not be
miruga27 0:dda4f4550403 18 misrepresented as being the original software.
miruga27 0:dda4f4550403 19 3. This notice may not be removed or altered from any source distribution.
miruga27 0:dda4f4550403 20 */
miruga27 0:dda4f4550403 21
miruga27 0:dda4f4550403 22 /**
miruga27 0:dda4f4550403 23 * \file SDL_loadso.h
miruga27 0:dda4f4550403 24 *
miruga27 0:dda4f4550403 25 * System dependent library loading routines
miruga27 0:dda4f4550403 26 *
miruga27 0:dda4f4550403 27 * Some things to keep in mind:
miruga27 0:dda4f4550403 28 * \li These functions only work on C function names. Other languages may
miruga27 0:dda4f4550403 29 * have name mangling and intrinsic language support that varies from
miruga27 0:dda4f4550403 30 * compiler to compiler.
miruga27 0:dda4f4550403 31 * \li Make sure you declare your function pointers with the same calling
miruga27 0:dda4f4550403 32 * convention as the actual library function. Your code will crash
miruga27 0:dda4f4550403 33 * mysteriously if you do not do this.
miruga27 0:dda4f4550403 34 * \li Avoid namespace collisions. If you load a symbol from the library,
miruga27 0:dda4f4550403 35 * it is not defined whether or not it goes into the global symbol
miruga27 0:dda4f4550403 36 * namespace for the application. If it does and it conflicts with
miruga27 0:dda4f4550403 37 * symbols in your code or other shared libraries, you will not get
miruga27 0:dda4f4550403 38 * the results you expect. :)
miruga27 0:dda4f4550403 39 */
miruga27 0:dda4f4550403 40
miruga27 0:dda4f4550403 41 #ifndef _SDL_loadso_h
miruga27 0:dda4f4550403 42 #define _SDL_loadso_h
miruga27 0:dda4f4550403 43
miruga27 0:dda4f4550403 44 #include "SDL_stdinc.h"
miruga27 0:dda4f4550403 45 #include "SDL_error.h"
miruga27 0:dda4f4550403 46
miruga27 0:dda4f4550403 47 #include "begin_code.h"
miruga27 0:dda4f4550403 48 /* Set up for C function definitions, even when using C++ */
miruga27 0:dda4f4550403 49 #ifdef __cplusplus
miruga27 0:dda4f4550403 50 extern "C" {
miruga27 0:dda4f4550403 51 #endif
miruga27 0:dda4f4550403 52
miruga27 0:dda4f4550403 53 /**
miruga27 0:dda4f4550403 54 * This function dynamically loads a shared object and returns a pointer
miruga27 0:dda4f4550403 55 * to the object handle (or NULL if there was an error).
miruga27 0:dda4f4550403 56 * The 'sofile' parameter is a system dependent name of the object file.
miruga27 0:dda4f4550403 57 */
miruga27 0:dda4f4550403 58 extern DECLSPEC void *SDLCALL SDL_LoadObject(const char *sofile);
miruga27 0:dda4f4550403 59
miruga27 0:dda4f4550403 60 /**
miruga27 0:dda4f4550403 61 * Given an object handle, this function looks up the address of the
miruga27 0:dda4f4550403 62 * named function in the shared object and returns it. This address
miruga27 0:dda4f4550403 63 * is no longer valid after calling SDL_UnloadObject().
miruga27 0:dda4f4550403 64 */
miruga27 0:dda4f4550403 65 extern DECLSPEC void *SDLCALL SDL_LoadFunction(void *handle,
miruga27 0:dda4f4550403 66 const char *name);
miruga27 0:dda4f4550403 67
miruga27 0:dda4f4550403 68 /**
miruga27 0:dda4f4550403 69 * Unload a shared object from memory.
miruga27 0:dda4f4550403 70 */
miruga27 0:dda4f4550403 71 extern DECLSPEC void SDLCALL SDL_UnloadObject(void *handle);
miruga27 0:dda4f4550403 72
miruga27 0:dda4f4550403 73 /* Ends C function definitions when using C++ */
miruga27 0:dda4f4550403 74 #ifdef __cplusplus
miruga27 0:dda4f4550403 75 }
miruga27 0:dda4f4550403 76 #endif
miruga27 0:dda4f4550403 77 #include "close_code.h"
miruga27 0:dda4f4550403 78
miruga27 0:dda4f4550403 79 #endif /* _SDL_loadso_h */
miruga27 0:dda4f4550403 80
miruga27 0:dda4f4550403 81 /* vi: set ts=4 sw=4 expandtab: */