📄 tsk_img_i.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 */#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#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -