Class DynamicLinkLoader

java.lang.Object
org.lwjgl.system.freebsd.DynamicLinkLoader

public class DynamicLinkLoader extends Object
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static 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 Type
    Method
    Description
    static int
    dlclose(long handle)
    int dlclose(void * handle)
    static @Nullable String
    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
    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)

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

  • Method Details

    • ndlopen

      public static long ndlopen(long filename, int mode)
      void * dlopen(char const * filename, int mode)
    • dlopen

      public static long dlopen(@Nullable ByteBuffer filename, int mode)
      void * dlopen(char const * filename, int mode)
    • dlopen

      public static long dlopen(@Nullable CharSequence filename, int mode)
      void * dlopen(char const * filename, int mode)
    • ndlerror

      public static long ndlerror()
      char * dlerror(void)
    • dlerror

      public static @Nullable String dlerror()
      char * dlerror(void)
    • ndlsym

      public static long ndlsym(long handle, long name)
      void * dlsym(void * handle, char const * name)
    • dlsym

      public static long dlsym(long handle, ByteBuffer name)
      void * dlsym(void * handle, char const * name)
    • dlsym

      public static long dlsym(long handle, CharSequence name)
      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)