⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 aff.h

📁 linux下开发的针对所有磁盘的数据恢复的源码
💻 H
字号:
/* * 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 *//*  * Header files for AFF-specific data structures and functions.  */#ifndef _AFF_H#define _AFF_H#if HAVE_LIBAFFLIB#include <afflib/afflib.h>#include <afflib/afflib_i.h>extern TSK_IMG_INFO *aff_open(const char **);/** \internal * Stores AFF-specific data */typedef struct {    TSK_IMG_INFO img_info;    AFFILE *af_file;    TSK_OFF_T seek_pos;    uint16_t type;              /* TYPE - uses AF_IDENTIFY_x values */} IMG_AFF_INFO;#endif#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -