Package overrungl.stb

Class STBIIoCallbacks

java.lang.Object
overrungl.Pointer
overrungl.Struct
overrungl.stb.STBIIoCallbacks
All Implemented Interfaces:
Addressable

public class STBIIoCallbacks extends Struct
STBIIoCallbacks relies on preview features of the Java platform:
Programs can only use STBIIoCallbacks when preview features are enabled.
Preview features may be removed in a future release, or upgraded to permanent features of the Java platform.
The IO callback of STB image.

Layout


 struct stbi_io_callbacks {
     int (*readPREVIEW)(void* user, char* data, int size);
     void (*skipPREVIEW)(void* user, int n);
     int (*eofPREVIEW)(void* user);
 }
Since:
0.1.0
Author:
squid233