#ifndef IMGREFSFIO_H #define IMGREFSFIO_H #include "../include/imgrefs.h" extern "C" imgref_struct *ImgRefNew(void); extern "C" void ImgRefDelete(imgref_struct *imgref); extern "C" imgref_light_struct *ImgRefLightNew(void); extern "C" void ImgRefLightDelete(imgref_light_struct *light); extern "C" int ImgRefsFileOpen( imgref_struct ***imgrefs_list, int *nimgrefs, const char *path, void (*progress_cb)(void *, unsigned long, unsigned long), void *progress_data, void (*print_warning)(const char *s) ); #endif /* IMGREFSFIO_H */