Class SaveFileDataCallback
java.lang.Object
com.raylib.jextract.SaveFileDataCallback
typedef bool (*SaveFileDataCallback)(const char *, void *, int)
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interface
The function pointer signature, expressed as a functional interface -
Method Summary
Modifier and TypeMethodDescriptionstatic MemorySegment
allocate
(SaveFileDataCallback.Function fi, Arena arena) Allocates a new upcall stub, whose implementation is defined byfi
.static FunctionDescriptor
The descriptor of this function pointerstatic boolean
invoke
(MemorySegment funcPtr, MemorySegment fileName, MemorySegment data, int dataSize) Invoke the upcall stubfuncPtr
, with given parameters
-
Method Details
-
descriptor
The descriptor of this function pointer -
allocate
Allocates a new upcall stub, whose implementation is defined byfi
. The lifetime of the returned segment is managed byarena
-
invoke
public static boolean invoke(MemorySegment funcPtr, MemorySegment fileName, MemorySegment data, int dataSize) Invoke the upcall stubfuncPtr
, with given parameters
-