亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? libewf.h

?? sleuthit-2.09 一個磁盤的工具集
?? H
?? 第 1 頁 / 共 2 頁
字號:
/* * Library for the Expert Witness Compression Format Support (EWF) * The file format both used by EnCase and FTK are based upon EWF * * Copyright (c) 2006-2007, Joachim Metz <forensics@hoffmannbv.nl>, * Hoffmann Investigations. All rights reserved. * * Refer to AUTHORS for acknowledgements. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * - Redistributions of source code must retain the above copyright notice, *   this list of conditions and the following disclaimer. * - Redistributions in binary form must reproduce the above copyright notice, *   this list of conditions and the following disclaimer in the documentation *   and/or other materials provided with the distribution. * - Neither the name of the creator, related organisations, nor the names of *   its contributors may be used to endorse or promote products derived from *   this software without specific prior written permission. * - All advertising materials mentioning features or use of this software *   must acknowledge the contribution by people stated in the acknowledgements. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER, COMPANY AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */#ifndef _LIBEWF_H#define _LIBEWF_H#include <libewf/libewf_definitions.h>#include <libewf/libewf_extern.h>#include <libewf/libewf_handle.h>#include <libewf/libewf_types.h>#include <stdio.h>#ifdef __cplusplusextern "C" {#endif/* Return the library version */#if 0 || defined( HAVE_WIDE_CHARACTER_TYPE )LIBEWF_EXTERN const wchar_t *libewf_get_version( void );#elseLIBEWF_EXTERN const char *libewf_get_version( void );#endif/* Detects if a file is an EWF file (check for the EWF file signature) * Returns 1 if true, 0 if not, or -1 on error */#if ( 0 || defined( HAVE_WIDE_CHARACTER_TYPE ) ) && defined( HAVE_WIDE_CHARACTER_SUPPORT_FUNCTIONS )LIBEWF_EXTERN int8_t libewf_check_file_signature( const wchar_t *filename );#elseLIBEWF_EXTERN int8_t libewf_check_file_signature( const char *filename );#endif/* Opens EWF file(s) * For reading files should contain all filenames that make up an EWF image * For writing files should contain the base of the filename, extentions like .e01 will be automatically added * Returns a pointer to the new instance of handle, NULL on error */#if ( 0 || defined( HAVE_WIDE_CHARACTER_TYPE ) ) && defined( HAVE_WIDE_CHARACTER_SUPPORT_FUNCTIONS )LIBEWF_EXTERN LIBEWF_HANDLE *libewf_open( wchar_t * const filenames[], uint16_t file_amount, uint8_t flags );#elseLIBEWF_EXTERN LIBEWF_HANDLE *libewf_open( char * const filenames[], uint16_t file_amount, uint8_t flags );#endif/* Seeks a certain offset of the media data within the EWF file(s) * It will set the related file offset to the specific chunk offset * Returns the offset if seek is successful, or -1 on error */LIBEWF_EXTERN off_t libewf_seek_offset( LIBEWF_HANDLE *handle, off_t offset );/* Reads data from the curent offset into a buffer * This function swaps byte pairs if specified * Returns the amount of bytes read, or -1 on error */LIBEWF_EXTERN ssize_t libewf_read_buffer( LIBEWF_HANDLE *handle, void *buffer, size_t size );/* Reads media data from an offset into a buffer * This function swaps byte pairs if specified * Returns the amount of bytes read, or -1 on error */LIBEWF_EXTERN ssize_t libewf_read_random( LIBEWF_HANDLE *handle, void *buffer, size_t size, off_t offset );/* Writes data in EWF format from a buffer, the necessary settings of the write values must have been made * This function swaps byte pairs if specified * Returns the amount of input bytes written, 0 when no longer bytes can be written, or -1 on error */LIBEWF_EXTERN ssize_t libewf_write_buffer( LIBEWF_HANDLE *handle, void *buffer, size_t size );/* Writes data in EWF format from a buffer at an specific offset, * the necessary settings of the write values must have been made * This function swaps byte pairs * Returns the amount of input bytes written, 0 when no longer bytes can be written, or -1 on error */LIBEWF_EXTERN ssize_t libewf_write_random( LIBEWF_HANDLE *handle, void *buffer, size_t size, off_t offset );/* Finalizes the write by correcting the EWF the meta data in the segment files * This function is required after writing from stream * Returns the amount of input bytes written, or -1 on error */LIBEWF_EXTERN ssize_t libewf_write_finalize( LIBEWF_HANDLE *handle );/* Closes the EWF handle and frees memory used within the handle * Returns 1 if successful, or -1 on error */LIBEWF_EXTERN int8_t libewf_close( LIBEWF_HANDLE *handle );/* Returns the amount of bytes per sector from the media information, 0 if not set, -1 on error */LIBEWF_EXTERN int32_t libewf_get_bytes_per_sector( LIBEWF_HANDLE *handle );/* Returns the amount of sectors from the media information, 0 if not set, -1 on error */LIBEWF_EXTERN int32_t libewf_get_amount_of_sectors( LIBEWF_HANDLE *handle );/* Returns the chunk size from the media information, 0 if not set, -1 on error */LIBEWF_EXTERN int32_t libewf_get_chunk_size( LIBEWF_HANDLE *handle );/* Returns the error granularity from the media information, 0 if not set, -1 on error */LIBEWF_EXTERN int32_t libewf_get_error_granularity( LIBEWF_HANDLE *handle );/* Returns the compression level value, or -1 on error */LIBEWF_EXTERN int8_t libewf_get_compression_level( LIBEWF_HANDLE *handle );/* Returns the size of the contained media data, 0 if not set, -1 on error */LIBEWF_EXTERN int64_t libewf_get_media_size( LIBEWF_HANDLE *handle );/* Returns the media type value, or -1 on error */LIBEWF_EXTERN int8_t libewf_get_media_type( LIBEWF_HANDLE *handle );/* Returns the media flags value, or -1 on error */LIBEWF_EXTERN int8_t libewf_get_media_flags( LIBEWF_HANDLE *handle );/* Returns the volume type value, or -1 on error */LIBEWF_EXTERN int8_t libewf_get_volume_type( LIBEWF_HANDLE *handle );/* Returns the format value, or -1 on error */LIBEWF_EXTERN int8_t libewf_get_format( LIBEWF_HANDLE *handle );/* Returns 1 if the GUID is set, or -1 on error */LIBEWF_EXTERN int8_t libewf_get_guid( LIBEWF_HANDLE *handle, uint8_t *guid, size_t size );/* Returns the amount of chunks written, 0 if no chunks have been written, or -1 on error */LIBEWF_EXTERN int64_t libewf_get_write_amount_of_chunks( LIBEWF_HANDLE *handle );/* Retrieves the header value specified by the identifier * Returns 1 if successful, 0 if value not present, -1 on error */#if 0 || defined( HAVE_WIDE_CHARACTER_TYPE )LIBEWF_EXTERN int8_t libewf_get_header_value( LIBEWF_HANDLE *handle, wchar_t *identifier, wchar_t *value, size_t length );#elseLIBEWF_EXTERN int8_t libewf_get_header_value( LIBEWF_HANDLE *handle, char *identifier, char *value, size_t length );#endif/* Retrieves the header value case number * Returns 1 if successful, 0 if value not present, -1 on error */#if 0 || defined( HAVE_WIDE_CHARACTER_TYPE )#define libewf_get_header_value_case_number( handle, value, length ) \        libewf_get_header_value( handle, L"case_number", value, length )#else#define libewf_get_header_value_case_number( handle, value, length ) \        libewf_get_header_value( handle, "case_number", value, length )#endif/* Retrieves the header value description * Returns 1 if successful, 0 if value not present, -1 on error */#if 0 || defined( HAVE_WIDE_CHARACTER_TYPE )#define libewf_get_header_value_description( handle, value, length ) \        libewf_get_header_value( handle, L"description", value, length )#else#define libewf_get_header_value_description( handle, value, length ) \        libewf_get_header_value( handle, "description", value, length )#endif/* Retrieves the header value examiner name * Returns 1 if successful, 0 if value not present, -1 on error */#if 0 || defined( HAVE_WIDE_CHARACTER_TYPE )#define libewf_get_header_value_examiner_name( handle, value, length ) \        libewf_get_header_value( handle, L"examiner_name", value, length )#else#define libewf_get_header_value_examiner_name( handle, value, length ) \        libewf_get_header_value( handle, "examiner_name", value, length )#endif/* Retrieves the header value evidence number * Returns 1 if successful, 0 if value not present, -1 on error */#if 0 || defined( HAVE_WIDE_CHARACTER_TYPE )#define libewf_get_header_value_evidence_number( handle, value, length ) \        libewf_get_header_value( handle, L"evidence_number", value, length )#else#define libewf_get_header_value_evidence_number( handle, value, length ) \        libewf_get_header_value( handle, "evidence_number", value, length )#endif/* Retrieves the header value notes * Returns 1 if successful, 0 if value not present, -1 on error */#if 0 || defined( HAVE_WIDE_CHARACTER_TYPE )#define libewf_get_header_value_notes( handle, value, length ) \        libewf_get_header_value( handle, L"notes", value, length )#else#define libewf_get_header_value_notes( handle, value, length ) \        libewf_get_header_value( handle, "notes", value, length )#endif/* Retrieves the header value acquiry date * Returns 1 if successful, 0 if value not present, -1 on error */#if 0 || defined( HAVE_WIDE_CHARACTER_TYPE )#define libewf_get_header_value_acquiry_date( handle, value, length ) \        libewf_get_header_value( handle, L"acquiry_date", value, length )#else#define libewf_get_header_value_acquiry_date( handle, value, length ) \        libewf_get_header_value( handle, "acquiry_date", value, length )#endif/* Retrieves the header value system date * Returns 1 if successful, 0 if value not present, -1 on error */#if 0 || defined( HAVE_WIDE_CHARACTER_TYPE )#define libewf_get_header_value_system_date( handle, value, length ) \        libewf_get_header_value( handle, L"system_date", value, length )#else#define libewf_get_header_value_system_date( handle, value, length ) \        libewf_get_header_value( handle, "system_date", value, length )#endif/* Retrieves the header value acquiry operating system * Returns 1 if successful, 0 if value not present, -1 on error */#if 0 || defined( HAVE_WIDE_CHARACTER_TYPE )#define libewf_get_header_value_acquiry_operating_system( handle, value, length ) \        libewf_get_header_value( handle, L"acquiry_operating_system", value, length )#else#define libewf_get_header_value_acquiry_operating_system( handle, value, length ) \        libewf_get_header_value( handle, "acquiry_operating_system", value, length )#endif/* Retrieves the header value acquiry software version * Returns 1 if successful, 0 if value not present, -1 on error */#if 0 || defined( HAVE_WIDE_CHARACTER_TYPE )#define libewf_get_header_value_acquiry_software_version( handle, value, length ) \        libewf_get_header_value( handle, L"acquiry_software_version", value, length )#else#define libewf_get_header_value_acquiry_software_version( handle, value, length ) \        libewf_get_header_value( handle, "acquiry_software_version", value, length )#endif/* Retrieves the header value password * Returns 1 if successful, 0 if value not present, -1 on error */#if 0 || defined( HAVE_WIDE_CHARACTER_TYPE )#define libewf_get_header_value_password( handle, value, length ) \        libewf_get_header_value( handle, L"password", value, length )#else#define libewf_get_header_value_password( handle, value, length ) \        libewf_get_header_value( handle, "password", value, length )#endif/* Retrieves the header value compression type * Returns 1 if successful, 0 if value not present, -1 on error */#if 0 || defined( HAVE_WIDE_CHARACTER_TYPE )#define libewf_get_header_value_compression_type( handle, value, length ) \        libewf_get_header_value( handle, L"compression_type", value, length )#else

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
一区二区欧美精品| 91丨九色丨蝌蚪丨老版| av成人免费在线观看| 欧美日韩国产bt| 国产精品久久久久久久久搜平片| 亚洲综合在线第一页| 丰满放荡岳乱妇91ww| 日韩免费福利电影在线观看| 亚洲人成网站影音先锋播放| 九九热在线视频观看这里只有精品| 日本精品一区二区三区四区的功能| 欧美精品一区二区三区四区| 夜夜揉揉日日人人青青一国产精品| 国产成人在线视频网址| 欧美成人video| 亚洲第一激情av| 91福利在线导航| 亚洲女爱视频在线| 成人av电影免费在线播放| 精品国产一区二区三区不卡 | 日韩精品视频网站| 色综合婷婷久久| 综合久久久久久久| av网站一区二区三区| 国产精品沙发午睡系列990531| 精品一区二区三区免费播放| 欧美一区二区在线不卡| 日韩精品一二区| 日韩一区二区三区在线视频| 日韩综合一区二区| 欧美日本一道本| 日韩精品乱码av一区二区| 欧美日韩精品综合在线| 亚洲18影院在线观看| 欧美人与性动xxxx| 日本欧美在线观看| 精品美女一区二区| 国产精选一区二区三区| 国产丝袜欧美中文另类| 国产91精品欧美| 1024国产精品| 欧美性极品少妇| 丝袜美腿亚洲色图| 欧美精品一区二区高清在线观看| 久久国内精品自在自线400部| 日韩美女一区二区三区| 国产毛片精品一区| 一区精品在线播放| 色婷婷综合久久久| 日韩国产成人精品| xf在线a精品一区二区视频网站| 国产成人超碰人人澡人人澡| 中文字幕在线不卡一区| 欧美日韩免费观看一区二区三区| 日本vs亚洲vs韩国一区三区| 久久久影视传媒| 色综合中文字幕| 久久99精品久久久| 国产精品视频一二| 欧美日韩大陆一区二区| 国产乱码一区二区三区| 亚洲视频一区二区在线| 91精品国产综合久久精品麻豆| 黄色日韩三级电影| 亚洲欧美电影院| 日韩欧美亚洲国产另类| 成人动漫视频在线| 亚洲超碰97人人做人人爱| 欧美精品一区二区三区在线播放| 岛国精品在线播放| 午夜精品在线视频一区| 国产精品久久久久aaaa| 欧美一区二区三区免费大片| 风间由美中文字幕在线看视频国产欧美| 亚洲色图制服诱惑 | 在线免费观看日韩欧美| 美女视频黄免费的久久 | 久久99这里只有精品| 亚洲免费视频中文字幕| 欧美成人精品1314www| 制服丝袜av成人在线看| 欧美国产国产综合| 欧美一区二区视频在线观看2020| 丁香婷婷深情五月亚洲| 日本成人在线网站| 亚洲天堂免费看| 国产亚洲美州欧州综合国| 欧美日韩精品欧美日韩精品一| 成人涩涩免费视频| 国产综合色视频| 首页国产欧美日韩丝袜| 亚洲男同1069视频| 国产欧美精品一区二区三区四区 | 欧美性受极品xxxx喷水| 丁香亚洲综合激情啪啪综合| 午夜亚洲国产au精品一区二区| 综合久久久久综合| 国产精品亲子伦对白| 欧美电视剧免费观看| 91精品国产福利| 欧美伊人久久久久久久久影院 | 成人动漫一区二区在线| 韩国女主播成人在线| 精品综合免费视频观看| 日本欧美韩国一区三区| 天天操天天综合网| 亚洲国产aⅴ成人精品无吗| 亚洲精品国产a久久久久久| 自拍偷拍国产精品| 亚洲欧美激情视频在线观看一区二区三区 | 国产福利不卡视频| 国产精品 日产精品 欧美精品| 韩国在线一区二区| 久久91精品久久久久久秒播| 久久国产麻豆精品| 国产精品羞羞答答xxdd| 国产一区高清在线| 国产制服丝袜一区| 成人一区二区在线观看| 99精品视频在线免费观看| 99久久亚洲一区二区三区青草| 成人av集中营| 欧美综合天天夜夜久久| 91国模大尺度私拍在线视频| 欧洲另类一二三四区| 欧美日韩激情一区二区| 欧美一区二区三区公司| 久久综合九色欧美综合狠狠| 国产亚洲精品超碰| 国产精品久久久久久亚洲伦| 一区二区三区四区中文字幕| 图片区小说区国产精品视频 | 一个色在线综合| 亚洲h精品动漫在线观看| 日韩成人伦理电影在线观看| 久久91精品国产91久久小草| 丰满白嫩尤物一区二区| 欧美亚洲国产一区二区三区| 欧美精品色综合| ww亚洲ww在线观看国产| 亚洲欧美影音先锋| 视频在线观看91| 国产成人精品免费网站| 在线亚洲精品福利网址导航| 日韩一区二区三| 中文字幕在线不卡一区二区三区| 亚洲最大色网站| 狠狠色狠狠色合久久伊人| 99久久精品国产观看| 日韩三级中文字幕| 中文字幕亚洲区| 日韩福利视频网| 成人免费毛片app| 日韩一区二区三区高清免费看看| 中文字幕精品—区二区四季| 亚洲小说春色综合另类电影| 国产一区二区三区免费观看| 在线观看av一区二区| 国产亚洲制服色| 日韩成人一区二区| 91美女视频网站| 久久天堂av综合合色蜜桃网| 亚洲午夜三级在线| 成人激情图片网| 欧美mv和日韩mv的网站| 一区二区成人在线| 不卡视频一二三四| 日韩精品中文字幕一区| 亚洲综合一二区| 99久久婷婷国产综合精品电影| 日韩一区二区三区四区五区六区 | 国产精品人人做人人爽人人添| 亚洲国产wwwccc36天堂| fc2成人免费人成在线观看播放| 精品毛片乱码1区2区3区| 亚洲综合在线第一页| 99久久99久久综合| 久久久久亚洲蜜桃| 美女精品一区二区| 欧美在线一区二区| 一区二区三区鲁丝不卡| av一区二区三区在线| 久久久久久久久99精品| 黄色精品一二区| 欧美成人艳星乳罩| 免费观看久久久4p| 欧美一区二区啪啪| 日韩黄色在线观看| 欧美浪妇xxxx高跟鞋交| 亚洲夂夂婷婷色拍ww47| 91蜜桃婷婷狠狠久久综合9色| 欧美韩国日本不卡| 国产成人综合在线| 中文在线资源观看网站视频免费不卡| 久久不见久久见免费视频7 | 国产一区二区精品在线观看| 日韩亚洲欧美在线观看| 麻豆精品视频在线观看| 欧美成人vr18sexvr| 国产一区中文字幕|