Tao.Sdl SDK Documentation

Sdl.SDL_LoadObject Method 

This function dynamically loads a shared object and returns a pointer to the object handle (or NULL if there was an error).

[Visual Basic]
Public Shared Function SDL_LoadObject( _
   ByVal sofile As String _
) As IntPtr
[C#]
public static IntPtr SDL_LoadObject(
   string sofile
);

Parameters

sofile
System dependent name of the object file.

Remarks

Binds to C-function in SDL_loadso.h

extern DECLSPEC void * SDLCALL SDL_LoadObject(const char *sofile)
            

See Also

Sdl Class | Tao.Sdl Namespace | SDL_LoadFunction | SDL_UnloadObject