1 // Copyright 2006 Brandon Long 2 // All Rights Reserved. 3 // 4 // This code is made available under the terms of the ClearSilver License. 5 // http://www.clearsilver.net/license.hdf 6 7 #ifndef __J_NEO_UTIL_H_ 8 #define __J_NEO_UTIL_H_ 1 9 10 typedef struct _fileload_info { 11 JNIEnv *env; 12 jobject fl_obj; 13 HDF *hdf; 14 jmethodID fl_method; 15 } FILELOAD_INFO; 16 17 NEOERR *jni_fileload_cb(void *ctx, HDF *hdf, const char *filename, 18 char **contents); 19 20 #endif // __J_NEO_UTIL_H_ 21