/* * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2 */ #ifndef _EX_FILE_H #define _EX_FILE_H void _ex_file_download_dialog(char *url, char *file); int _ex_file_download_progress_cb(void *data, const char *file, long int dltotal, long int dlnow, long int ultotal, long int ulnow); void _ex_file_download_complete_cb(void *data, const char *file, int status); int _ex_file_is_viewable(char *file); int _ex_file_is_ebg(char *file); int _ex_file_is_jpg(char *file); char *_ex_file_strip_extention(char *path); const char *_ex_file_get(char *path); #endif