00001 #ifndef _AFF_H 00002 #define _AFF_H 00003 00004 #ifdef USE_LIBAFF 00005 00006 #include <afflib.h> 00007 00008 extern TSK_IMG_INFO *aff_open(const char **, TSK_IMG_INFO *); 00009 00010 typedef struct IMG_AFF_INFO IMG_AFF_INFO; 00011 00012 struct IMG_AFF_INFO { 00013 TSK_IMG_INFO img_info; 00014 AFFILE *af_file; 00015 off_t seek_pos; 00016 uint16_t type; /* TYPE - uses AF_IDENTIFY_x values */ 00017 }; 00018 00019 #endif 00020 00021 #endif