Package org.lwjgl.stb

Class STBIIOCallbacks

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class STBIIOCallbacks extends Struct<STBIIOCallbacks> implements NativeResource

 struct stbi_io_callbacks {
     int (* read) (void * user, char * data, int size);
     void (* skip) (void * user, int n);
     int (* eof) (void * user);
 }