Package org.lwjgl.system.macosx
Class DynamicLinkLoader
java.lang.Object
org.lwjgl.system.macosx.DynamicLinkLoader
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final long
static final int
static final int
static final int
static final long
static final long
static final int
static final long
-
Method Summary
Modifier and TypeMethodDescriptionstatic int
dlclose
(long handle) int dlclose(void * handle)
static @Nullable String
dlerror()
char const * dlerror(void)
static long
dlopen
(@Nullable CharSequence path, int mode) void * dlopen(char const * path, int mode)
static long
dlopen
(@Nullable ByteBuffer path, int mode) void * dlopen(char const * path, 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 const * dlerror(void)
static long
ndlopen
(long path, int mode) void * dlopen(char const * path, 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_LOCAL
public static final int RTLD_LOCAL- See Also:
-
RTLD_GLOBAL
public static final int RTLD_GLOBAL- See Also:
-
RTLD_NEXT
public static final long RTLD_NEXT- See Also:
-
RTLD_DEFAULT
public static final long RTLD_DEFAULT- See Also:
-
RTLD_SELF
public static final long RTLD_SELF- See Also:
-
RTLD_MAIN_ONLY
public static final long RTLD_MAIN_ONLY- See Also:
-
-
Method Details
-
ndlopen
public static long ndlopen(long path, int mode) void * dlopen(char const * path, int mode)
-
dlopen
void * dlopen(char const * path, int mode)
-
dlopen
void * dlopen(char const * path, int mode)
-
ndlerror
public static long ndlerror()char const * dlerror(void)
-
dlerror
char const * 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)
-