Main Page | Data Structures | Directories | File List | Data Fields | Globals

raw.h

00001 /*
00002  * The Sleuth Kit
00003  *
00004  * $Date: 2007/04/05 16:01:55 $
00005  *
00006  * Brian Carrier [carrier@sleuthkit.org]
00007  * Copyright (c) 2005 Brian Carrier.  All rights reserved 
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

Generated on Thu Apr 5 12:00:08 2007 for The Sleuth Kit (Incomplete) by  doxygen 1.4.2