SDL_loadso.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:3k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /*
  2.     SDL - Simple DirectMedia Layer
  3.     Copyright (C) 1997-2006 Sam Lantinga
  4.     This library is free software; you can redistribute it and/or
  5.     modify it under the terms of the GNU Lesser General Public
  6.     License as published by the Free Software Foundation; either
  7.     version 2.1 of the License, or (at your option) any later version.
  8.     This library is distributed in the hope that it will be useful,
  9.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.     Lesser General Public License for more details.
  12.     You should have received a copy of the GNU Lesser General Public
  13.     License along with this library; if not, write to the Free Software
  14.     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  15.     Sam Lantinga
  16.     slouken@libsdl.org
  17. */
  18. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
  19. /* System dependent library loading routines                           */
  20. /* Some things to keep in mind:                                        
  21.    - These functions only work on C function names.  Other languages may
  22.      have name mangling and intrinsic language support that varies from
  23.      compiler to compiler.
  24.    - Make sure you declare your function pointers with the same calling
  25.      convention as the actual library function.  Your code will crash
  26.      mysteriously if you do not do this.
  27.    - Avoid namespace collisions.  If you load a symbol from the library,
  28.      it is not defined whether or not it goes into the global symbol
  29.      namespace for the application.  If it does and it conflicts with
  30.      symbols in your code or other shared libraries, you will not get
  31.      the results you expect. :)
  32. */
  33. #ifndef _SDL_loadso_h
  34. #define _SDL_loadso_h
  35. #include "SDL_stdinc.h"
  36. #include "SDL_error.h"
  37. #include "begin_code.h"
  38. /* Set up for C function definitions, even when using C++ */
  39. #ifdef __cplusplus
  40. extern "C" {
  41. #endif
  42. /* This function dynamically loads a shared object and returns a pointer
  43.  * to the object handle (or NULL if there was an error).
  44.  * The 'sofile' parameter is a system dependent name of the object file.
  45.  */
  46. extern DECLSPEC void * SDLCALL SDL_LoadObject(const char *sofile);
  47. /* Given an object handle, this function looks up the address of the
  48.  * named function in the shared object and returns it.  This address
  49.  * is no longer valid after calling SDL_UnloadObject().
  50.  */
  51. extern DECLSPEC void * SDLCALL SDL_LoadFunction(void *handle, const char *name);
  52. /* Unload a shared object from memory */
  53. extern DECLSPEC void SDLCALL SDL_UnloadObject(void *handle);
  54. /* Ends C function definitions when using C++ */
  55. #ifdef __cplusplus
  56. }
  57. #endif
  58. #include "close_code.h"
  59. #endif /* _SDL_loadso_h */