Tao.Sdl SDK Documentation

Sdl.SDL_LoadFunction Method 

Given an object handle, this function looks up the address of the named function in the shared object and returns it. This address is no longer valid after calling SDL_UnloadObject().

[Visual Basic]
Public Shared Function SDL_LoadFunction( _
   ByVal handle As IntPtr, _
   ByVal name As String _
) As IntPtr
[C#]
public static IntPtr SDL_LoadFunction(
   IntPtr handle,
   string name
);

Parameters

handle
Object handle
name
Name of function in the shared object.

Remarks

Binds to C-function in SDL_loadso.h

extern DECLSPEC void * SDLCALL SDL_LoadFunction(void *handle, const char *name)
            

See Also

Sdl Class | Tao.Sdl Namespace | SDL_LoadObject | SDL_UnloadObject