Wiki Page Content

Differences between revisions 5 and 7 (spanning 2 versions)
Revision 5 as of 2010-08-23 20:17:51
Size: 1453
Editor: SheenaSmith
Comment: added enums and structs lists
Revision 7 as of 2010-09-05 04:15:15
Size: 1328
Editor: SheenaSmith
Comment: update content - tip in address
Deletions are marked like this. Additions are marked like this.
Line 9: Line 9:
'''Include File(s):''' [[http://hg.libsdl.org/SDL/file/68dfd6df47da/include/SDL_loadso.h|SDL_loadso.h]] '''Include File(s):''' [[http://hg.libsdl.org/SDL/file/tip/include/SDL_loadso.h|SDL_loadso.h]]
Line 23: Line 23:
== Enumerations ==
<<FullSearch(category:CategorySharedObjectEnum)>>

== Structures ==
<<FullSearch(category:CategorySharedObjectStruct)>>
Line 31: Line 25:
<<FullSearch(category:CategorySharedObject)>> <<FullSearch(category:CategorySharedObject -CategoryEnum -CategoryStruct)>>

DRAFT

Shared Object Loading and Function Lookup

Include File(s): SDL_loadso.h

Introduction

This category contains functions for handling shared objects and additional functions.

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 ;)

Functions


CategoryCategory

None: CategorySharedObject (last edited 2013-10-12 19:36:42 by PhilippWiesemann)

(Page Info.)
Feedback
Please include your contact information if you'd like to receive a reply.
Submit