|
Size: 1258
Comment: update formatting
|
Size: 1217
Comment: update formatting
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 9: | Line 9: |
| '''Primary Include:''' [[http://hg.libsdl.org/SDL/file/68dfd6df47da/include/SDL_loadso.h|SDL_loadso.h]] Other Includes: SDL_stdinc.h, SDL_error.h |
'''Include File(s):''' [[http://hg.libsdl.org/SDL/file/68dfd6df47da/include/SDL_loadso.h|SDL_loadso.h]] |
| Line 17: | Line 15: |
| ^There are some^ System dependent library loading routines. | ^There are some^ ,,S,,ystem dependent library loading routines. |
DRAFT |
Shared Object Loading and Function Lookup
Include File(s): SDL_loadso.h
Introduction
There are some System dependent library loading routines.
Some things to keep in mind:
- These functions only work on C function names. Other languages may have name mangling and intrinsic language support that varies from compiler to compiler.
- Make sure you declare your function pointers with the same calling convention as the actual library function. Your code will crash mysteriously if you do not do this.
Avoid namespace collisions. If you load a symbol from the library, it is not defined whether or not as to whether it goes into the global symbol namespace for the application or not. If it does and it conflicts with symbols in your code or other shared libraries, you will not get the results you expect.
or
