split.h

来自「linux下开发的针对所有磁盘的数据恢复的源码」· C头文件 代码 · 共 49 行

H
49
字号
/* * 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 *//*  * Contains the split raw data file-specific functions and structures. */#ifndef _SPLIT_H#define _SPLIT_H#ifdef __cplusplusextern "C" {#endif    extern TSK_IMG_INFO *split_open(int, const TSK_TCHAR **);#define SPLIT_CACHE	15    typedef struct {#ifdef TSK_WIN32        HANDLE fd;#else        int fd;#endif        int image;        TSK_OFF_T seek_pos;    } IMG_SPLIT_CACHE;    typedef struct {        TSK_IMG_INFO img_info;        int num_img;        const TSK_TCHAR **images;        TSK_OFF_T *max_off;        int *cptr;              /* exists for each image - points to entry in cache */        IMG_SPLIT_CACHE cache[SPLIT_CACHE];     /* small number of fds for open images */        int next_slot;    } IMG_SPLIT_INFO;#ifdef __cplusplus}#endif#endif

⌨️ 快捷键说明

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