00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef _RAW_H
00010 #define _RAW_H
00011
00012 #ifdef __cplusplus
00013 extern "C" {
00014 #endif
00015
00016 extern TSK_IMG_INFO *raw_open(const TSK_TCHAR **, TSK_IMG_INFO *);
00017
00018 typedef struct IMG_RAW_INFO IMG_RAW_INFO;
00019 struct IMG_RAW_INFO {
00020 TSK_IMG_INFO img_info;
00021 #ifdef TSK_WIN32
00022 HANDLE fd;
00023 #else
00024 int fd;
00025 #endif
00026 OFF_T seek_pos;
00027 };
00028
00029 #ifdef __cplusplus
00030 }
00031 #endif
00032 #endif