Package org.lwjgl.system.freebsd
Class DynamicLinkLoader
java.lang.Object
org.lwjgl.system.freebsd.DynamicLinkLoader
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
static final int
static final int
static final int
static final int
static final int
static final int
static final int
-
Method Summary
Modifier and TypeMethodDescriptionstatic int
dlclose
(long handle) int dlclose(void * handle)
static @Nullable String
dlerror()
char * dlerror(void)
static long
dlopen
(@Nullable CharSequence filename, int mode) void * dlopen(char const * filename, int mode)
static long
dlopen
(@Nullable ByteBuffer filename, int mode) void * dlopen(char const * filename, int mode)
static long
dlsym
(long handle, CharSequence name) void * dlsym(void * handle, char const * name)
static long
dlsym
(long handle, ByteBuffer name) void * dlsym(void * handle, char const * name)
static int
ndlclose
(long handle) int dlclose(void * handle)
static long
ndlerror()
char * dlerror(void)
static long
ndlopen
(long filename, int mode) void * dlopen(char const * filename, int mode)
static long
ndlsym
(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)
-