Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added some notes from the benefit of my experience. :)
  • Loading branch information
slouken committed Jul 10, 2003
1 parent 7727703 commit 0eb138b
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions include/SDL_loadso.h
Expand Up @@ -28,6 +28,21 @@ static char rcsid =
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* 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 it goes into the global symbol
namespace for the application. If it does and it conflicts with
symbols in your code or other shared libraries, you will not get
the results you expect. :)
*/


#ifndef _SDL_loadso_h
#define _SDL_loadso_h

Expand Down

0 comments on commit 0eb138b

Please sign in to comment.