actual version
[sdl-headers.git] / sdlloadso.inc
1 //from sdl_loadso.h
2
3 {**
4  *  This function dynamically loads a shared object and returns a pointer
5  *  to the object handle (or NULL if there was an error).
6  *  The 'sofile' parameter is a system dependent name of the object file.
7  *}
8 function SDL_LoadObject(sofile: PAnsiChar): Pointer;
9
10 {**
11  *  Given an object handle, this function looks up the address of the
12  *  named function in the shared object and returns it.  This address
13  *  is no longer valid after calling SDL_UnloadObject().
14  *}
15 function SDL_LoadFunction(handle: Pointer; name: PAnsiChar): Pointer;
16
17 {**
18  *  Unload a shared object from memory.
19  *}
20 procedure SDL_UnloadObject(handle: Pointer);