Class SDLLoadSO
java.lang.Object
org.lwjgl.sdl.SDLLoadSO
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classContains the function pointers loaded fromSDL.getLibrary(). -
Method Summary
Modifier and TypeMethodDescriptionstatic longnSDL_LoadFunction(long handle, long name) SDL_FunctionPointer SDL_LoadFunction(SDL_SharedObject * handle, char * name)static longnSDL_LoadObject(long sofile) SDL_SharedObject * SDL_LoadObject(char const * sofile)static longSDL_LoadFunction(long handle, ByteBuffer name) SDL_FunctionPointer SDL_LoadFunction(SDL_SharedObject * handle, char * name)static longSDL_LoadObject(CharSequence sofile) SDL_SharedObject * SDL_LoadObject(char const * sofile)static longSDL_LoadObject(ByteBuffer sofile) SDL_SharedObject * SDL_LoadObject(char const * sofile)static voidSDL_UnloadObject(long handle) void SDL_UnloadObject(SDL_SharedObject * handle)
-
Method Details
-
nSDL_LoadObject
public static long nSDL_LoadObject(long sofile) SDL_SharedObject * SDL_LoadObject(char const * sofile) -
SDL_LoadObject
@NativeType("SDL_SharedObject *") public static long SDL_LoadObject(@NativeType("char const *") ByteBuffer sofile) SDL_SharedObject * SDL_LoadObject(char const * sofile) -
SDL_LoadObject
@NativeType("SDL_SharedObject *") public static long SDL_LoadObject(@NativeType("char const *") CharSequence sofile) SDL_SharedObject * SDL_LoadObject(char const * sofile) -
nSDL_LoadFunction
public static long nSDL_LoadFunction(long handle, long name) SDL_FunctionPointer SDL_LoadFunction(SDL_SharedObject * handle, char * name) -
SDL_LoadFunction
@NativeType("SDL_FunctionPointer") public static long SDL_LoadFunction(@NativeType("SDL_SharedObject *") long handle, @NativeType("char *") ByteBuffer name) SDL_FunctionPointer SDL_LoadFunction(SDL_SharedObject * handle, char * name) -
SDL_UnloadObject
void SDL_UnloadObject(SDL_SharedObject * handle)
-