Package org.lwjgl.system.macosx
Class MacOSXLibraryBundle
- java.lang.Object
-
- org.lwjgl.system.Pointer.Default
-
- org.lwjgl.system.SharedLibrary.Default
-
- org.lwjgl.system.macosx.MacOSXLibrary
-
- org.lwjgl.system.macosx.MacOSXLibraryBundle
-
- All Implemented Interfaces:
- java.lang.AutoCloseable, FunctionProvider, NativeResource, Pointer, SharedLibrary
public class MacOSXLibraryBundle extends MacOSXLibrary
Implements aSharedLibraryon the MacOS X using CFBundleCreate.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.lwjgl.system.SharedLibrary
SharedLibrary.Default, SharedLibrary.Delegate
-
-
Field Summary
-
Fields inherited from interface org.lwjgl.system.Pointer
POINTER_SHIFT, POINTER_SIZE
-
-
Constructor Summary
Constructors Constructor and Description MacOSXLibraryBundle(java.lang.String name)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description voidfree()Frees any native resources held by this object.longgetFunctionAddress(java.nio.ByteBuffer functionName)Returns the function address of the specified function.-
Methods inherited from class org.lwjgl.system.macosx.MacOSXLibrary
create
-
Methods inherited from class org.lwjgl.system.SharedLibrary.Default
getName
-
Methods inherited from class org.lwjgl.system.Pointer.Default
address, equals, hashCode, toString
-
Methods inherited from interface org.lwjgl.system.FunctionProvider
getFunctionAddress
-
Methods inherited from interface org.lwjgl.system.NativeResource
close
-
-
-
-
Method Detail
-
getFunctionAddress
public long getFunctionAddress(java.nio.ByteBuffer functionName)
Description copied from interface:FunctionProviderReturns the function address of the specified function. If the function is not supported, returns 0L.- Parameters:
functionName- the encoded name of the function to query- Returns:
- the function address or 0L if the function is not supported
-
free
public void free()
Description copied from interface:NativeResourceFrees any native resources held by this object.
-
-