Package com.sun.jna
Schnittstelle SymbolProvider
public interface SymbolProvider
Interface to define a custom symbol provider.
This can be used for method hooking, or special
classes like direct mapping the Win32 OpenGL.
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibunglong
getSymbolAddress
(long handle, String name, SymbolProvider parent) Gets the address of a symbol by its name and the handle of the library.
-
Methodendetails
-
getSymbolAddress
Gets the address of a symbol by its name and the handle of the library.- Parameter:
handle
- Handle of the original libraryname
- Name of the symbol to loadparent
- Parent symbol provider- Gibt zurück:
- Address of the symbol, typically a function.
-