?? 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 + -