亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
欧美成人vr18sexvr| 亚洲国产精品一区二区尤物区| 国产精品你懂的在线| 性欧美大战久久久久久久久| 国产精品一区二区在线观看网站| 91在线精品一区二区三区| 欧美一级日韩一级| 亚洲激情图片一区| 国产精品亚洲第一区在线暖暖韩国| 一本到三区不卡视频| 久久蜜桃av一区二区天堂| 尤物视频一区二区| 成人午夜在线播放| 精品成人一区二区三区四区| 婷婷激情综合网| 91社区在线播放| 中文字幕不卡在线观看| 久久99国产乱子伦精品免费| 欧美男男青年gay1069videost | 久久精品人人爽人人爽| 五月激情综合网| 欧美在线视频全部完| 国产精品的网站| www.亚洲色图.com| 日本一二三不卡| 成人涩涩免费视频| 国产日韩三级在线| 成人性生交大片免费看视频在线| 精品国产91久久久久久久妲己| 美国av一区二区| 日韩精品一区二区三区在线观看| 日韩国产欧美在线视频| 在线播放中文字幕一区| 日本不卡一区二区三区| 91精品国产美女浴室洗澡无遮挡| 日韩精品电影在线| 欧美一级二级三级蜜桃| 免费在线观看视频一区| 欧美tickling网站挠脚心| 狠狠色狠狠色综合| 久久精品一区二区三区不卡| 韩国女主播一区二区三区| 久久综合色综合88| 韩国精品免费视频| 欧美绝品在线观看成人午夜影视| 亚洲日本一区二区三区| 99久久99久久综合| 欧美一区二区国产| 日韩精品电影在线| 日韩欧美第一区| 免费国产亚洲视频| 日韩免费看网站| 久久99精品久久久久久动态图 | 床上的激情91.| 国产日韩欧美电影| 高清成人在线观看| 精品国产一区a| 亚洲欧美电影院| 97久久超碰精品国产| 最新久久zyz资源站| 91香蕉视频污| 亚洲黄色片在线观看| 日本乱码高清不卡字幕| 亚洲一区二区三区小说| 91麻豆高清视频| 亚洲国产日韩一区二区| 日韩一区二区免费电影| 久久99热99| 欧美一级二级三级蜜桃| 成人免费观看视频| 综合久久久久久久| 欧美午夜不卡视频| 日韩中文字幕麻豆| 日韩欧美一级二级| 国产99久久精品| 亚洲综合免费观看高清在线观看| 91色|porny| 琪琪一区二区三区| 久久精品人人做| 91成人看片片| 欧美aaaaaa午夜精品| 中文字幕日本不卡| 欧美老女人第四色| 男女男精品视频| 亚洲视频小说图片| 欧美一区二区三区视频在线 | 亚洲动漫第一页| 久久在线免费观看| 色乱码一区二区三区88| 日本成人在线不卡视频| 欧美极品xxx| 欧美一级高清片| 99久久er热在这里只有精品15| 亚洲午夜国产一区99re久久| 欧美精品一区二区三区蜜桃| 99re这里只有精品首页| 麻豆成人久久精品二区三区小说| 中文字幕av一区二区三区高 | 激情亚洲综合在线| 国产精品免费看片| 7777精品伊人久久久大香线蕉的| 国产成人精品影视| 日韩精品电影在线观看| 中文字幕一区二区三区在线不卡 | 精品国免费一区二区三区| 99re在线精品| 日韩中文字幕区一区有砖一区 | 青娱乐精品视频在线| 亚洲欧美激情一区二区| 久久九九久精品国产免费直播| 欧美三区在线观看| 99久久99久久久精品齐齐| 国产综合色在线视频区| 亚洲成人你懂的| 亚洲免费色视频| 中文幕一区二区三区久久蜜桃| 日韩免费一区二区三区在线播放| 色婷婷久久久综合中文字幕| 极品美女销魂一区二区三区免费| 午夜视频在线观看一区二区三区| 国产精品免费aⅴ片在线观看| 亚洲精品一区二区三区四区高清| 欧美日韩高清一区| 色激情天天射综合网| 成人18视频日本| 国产精品一区二区在线播放| 久久国产夜色精品鲁鲁99| 天天影视色香欲综合网老头| 亚洲精品视频在线| 日韩一区欧美一区| 国产精品国产三级国产aⅴ原创| 精品成a人在线观看| 日韩欧美一二三区| 日韩欧美一二三| 制服丝袜中文字幕一区| 成人久久久精品乱码一区二区三区 | 悠悠色在线精品| 亚洲免费观看高清完整| 国产精品第四页| 中文字幕av在线一区二区三区| 久久午夜色播影院免费高清| 久久综合狠狠综合久久激情| 日韩欧美一区在线观看| 精品国产自在久精品国产| 亚洲精品在线观看视频| 欧美激情在线观看视频免费| 欧美韩日一区二区三区四区| 国产精品成人在线观看| 亚洲午夜在线电影| 亚洲高清在线视频| 免费人成精品欧美精品| 奇米综合一区二区三区精品视频| 手机精品视频在线观看| 日韩国产欧美在线视频| 精品亚洲欧美一区| 国产成人免费网站| 成人av中文字幕| 欧美三级电影精品| 欧美成人女星排行榜| 国产日韩欧美电影| 亚洲久本草在线中文字幕| 午夜精品久久久久久久99樱桃| 日产国产高清一区二区三区| 韩国女主播成人在线观看| 成人午夜免费视频| 91黄视频在线| 国产欧美一区二区三区在线看蜜臀 | av在线不卡观看免费观看| 欧美在线不卡视频| 日韩欧美成人午夜| 国产精品狼人久久影院观看方式| 亚洲成va人在线观看| 日本aⅴ亚洲精品中文乱码| 日韩1区2区日韩1区2区| 91麻豆免费看片| 日韩一区二区精品| 国产精品视频一二| 强制捆绑调教一区二区| 99在线精品免费| 91精品国产一区二区人妖| 欧美国产日韩精品免费观看| 一区二区三区波多野结衣在线观看 | 91色在线porny| 久久亚洲二区三区| 一区二区三区.www| 紧缚奴在线一区二区三区| 91一区二区在线观看| 国产欧美日韩在线| 日本不卡一区二区三区高清视频| www.99精品| 久久女同互慰一区二区三区| 亚洲国产成人高清精品| 岛国精品在线观看| 日韩欧美激情在线| 亚洲成人1区2区| 91麻豆国产精品久久| 欧美国产成人精品| 国模娜娜一区二区三区| 欧美一级搡bbbb搡bbbb| 亚洲成a人v欧美综合天堂下载|