Package com.jogamp.common.os
Interface DynamicLookupHelper
- All Known Implementing Classes:
DynamicLibraryBundle,NativeLibrary
public interface DynamicLookupHelper
Interface callers may use ProcAddressHelper's
reset
helper method to install function pointers into a
ProcAddressTable. This must typically be written with native
code.-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionvoidlongdynamicLookupFunction(String funcName) Returns the function handle for function 'funcName'.booleanisFunctionAvailable(String funcName) Queries whether function 'funcName' is available.void
-
Field Details
-
DEBUG
static final boolean DEBUG -
DEBUG_LOOKUP
static final boolean DEBUG_LOOKUP
-
-
Method Details
-
claimAllLinkPermission
- Throws:
SecurityException- if user is not granted access for the library set.
-
releaseAllLinkPermission
- Throws:
SecurityException- if user is not granted access for the library set.
-
dynamicLookupFunction
Returns the function handle for function 'funcName'.- Throws:
SecurityException- if user is not granted access for the library set.
-
isFunctionAvailable
Queries whether function 'funcName' is available.- Throws:
SecurityException- if user is not granted access for the library set.
-