00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef _EWF_H
00014 #define _EWF_H
00015
00016 #ifdef USE_LIBEWF
00017
00018 #include "libewf.h"
00019
00020 #ifdef __cplusplus
00021 extern "C" {
00022 #endif
00023
00024 extern TSK_IMG_INFO *ewf_open(int, const char **, TSK_IMG_INFO *);
00025
00026 typedef struct IMG_EWF_INFO IMG_EWF_INFO;
00027 struct IMG_EWF_INFO {
00028 TSK_IMG_INFO img_info;
00029 LIBEWF_HANDLE *handle;
00030 char *md5hash;
00031 };
00032
00033 #ifdef __cplusplus
00034 }
00035 #endif
00036 #endif
00037 #endif