Package org.lwjgl.system.freebsd
Class DynamicLinkLoader
java.lang.Object
org.lwjgl.system.freebsd.DynamicLinkLoader
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intstatic final intstatic final intstatic final intstatic final intstatic final intstatic final intstatic final int -
Method Summary
Modifier and TypeMethodDescriptionstatic intdlclose(long handle) int dlclose(void * handle)static @Nullable Stringdlerror()char * dlerror(void)static longdlopen(@Nullable CharSequence filename, int mode) void * dlopen(char const * filename, int mode)static longdlopen(@Nullable ByteBuffer filename, int mode) void * dlopen(char const * filename, int mode)static longdlsym(long handle, CharSequence name) void * dlsym(void * handle, char const * name)static longdlsym(long handle, ByteBuffer name) void * dlsym(void * handle, char const * name)static intndlclose(long handle) int dlclose(void * handle)static longndlerror()char * dlerror(void)static longndlopen(long filename, int mode) void * dlopen(char const * filename, int mode)static longndlsym(long handle, long name) void * dlsym(void * handle, char const * name)
-
Field Details
-
RTLD_LAZY
public static final int RTLD_LAZY- See Also:
-
RTLD_NOW
public static final int RTLD_NOW- See Also:
-
RTLD_BINDING_MASK
public static final int RTLD_BINDING_MASK- See Also:
-
RTLD_NOLOAD
public static final int RTLD_NOLOAD- See Also:
-
RTLD_DEEPBIND
public static final int RTLD_DEEPBIND- See Also:
-
RTLD_GLOBAL
public static final int RTLD_GLOBAL- See Also:
-
RTLD_LOCAL
public static final int RTLD_LOCAL- See Also:
-
RTLD_NODELETE
public static final int RTLD_NODELETE- See Also:
-
-
Method Details
-
ndlopen
public static long ndlopen(long filename, int mode) void * dlopen(char const * filename, int mode) -
dlopen
void * dlopen(char const * filename, int mode) -
dlopen
void * dlopen(char const * filename, int mode) -
ndlerror
public static long ndlerror()char * dlerror(void) -
dlerror
char * dlerror(void) -
ndlsym
public static long ndlsym(long handle, long name) void * dlsym(void * handle, char const * name) -
dlsym
void * dlsym(void * handle, char const * name) -
dlsym
void * dlsym(void * handle, char const * name) -
ndlclose
public static int ndlclose(long handle) int dlclose(void * handle) -
dlclose
public static int dlclose(long handle) int dlclose(void * handle)
-