ewf.h
来自「linux下开发的针对所有磁盘的数据恢复的源码」· C头文件 代码 · 共 47 行
H
47 行
/* * The Sleuth Kit - Add on for EWF image support * Eye Witness Compression Format Support * * Joachim Metz <metz@studenten.net> * Copyright (c) 2006 Joachim Metz. All rights reserved * * Based on raw image support of the Sleuth Kit from * Brian Carrier. *//* * Header files for EWF-specific data structures and functions. */#ifndef _EWF_H#define _EWF_H#if HAVE_LIBEWF#if defined(TSK_WIN32)#define HAVE_WIDE_CHARACTER_TYPE 1#define HAVE_WIDE_CHARACTER_SUPPORT_FUNCTIONS 1#include <config_windows.h>#endif#include <libewf.h>#ifdef __cplusplusextern "C" {#endif extern TSK_IMG_INFO *ewf_open(int, const TSK_TCHAR **); typedef struct { TSK_IMG_INFO img_info; LIBEWF_HANDLE *handle; char md5hash[33]; int md5hash_isset; } IMG_EWF_INFO;#ifdef __cplusplus}#endif#endif#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?