1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
/*
* The Sleuth Kit
*
* Brian Carrier [carrier <at> sleuthkit [dot] org]
* Copyright (c) 2005-2008 Brian Carrier. All rights reserved
*
* This software is distributed under the Common Public License 1.0
*/
#ifndef _TSK_IMG_I_H
#define _TSK_IMG_I_H
/*
* Contains the internal library definitions for the disk image functions. This should
* be included by the code in the img library.
*/
// include the base internal header file
#include "tsk3/base/tsk_base_i.h"
// include the external disk image header file
#include "tsk_img.h"
// other standard includes
#include <sys/types.h>
#include <sys/stat.h>
#include <string.h>
#include <fcntl.h>
#include <errno.h>
// Cygwin needs this, but not everyone defines it
#ifndef O_BINARY
#define O_BINARY 0
#endif
extern TSK_TCHAR **tsk_img_findFiles(const TSK_TCHAR *a_startingName, int *a_numFound);
#endif
|