libesedb-python 20240420__tar.gz → 20260704__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- libesedb_python-20260704/AUTHORS +4 -0
- {libesedb-20240420 → libesedb_python-20260704}/INSTALL +0 -0
- libesedb_python-20260704/Makefile.am +113 -0
- libesedb_python-20260704/Makefile.in +1255 -0
- libesedb_python-20260704/PKG-INFO +44 -0
- libesedb_python-20260704/README +27 -0
- libesedb_python-20260704/_build.py +275 -0
- libesedb_python-20260704/acinclude.m4 +36 -0
- libesedb_python-20260704/aclocal.m4 +1551 -0
- libesedb_python-20260704/common/Makefile.in +813 -0
- libesedb_python-20260704/common/byte_stream.h +312 -0
- libesedb_python-20260704/common/common.h +43 -0
- libesedb_python-20260704/common/config.h +638 -0
- libesedb_python-20260704/common/config.h.in +637 -0
- libesedb_python-20260704/common/config_borlandc.h +26 -0
- libesedb_python-20260704/common/config_msc.h +34 -0
- libesedb_python-20260704/common/config_winapi.h +97 -0
- libesedb_python-20260704/common/file_stream.h +151 -0
- libesedb_python-20260704/common/memory.h +129 -0
- libesedb_python-20260704/common/narrow_string.h +187 -0
- libesedb_python-20260704/common/system_string.h +154 -0
- libesedb_python-20260704/common/types.h +392 -0
- libesedb_python-20260704/common/types.h.in +392 -0
- libesedb_python-20260704/common/wide_string.h +175 -0
- libesedb_python-20260704/config.guess +1754 -0
- libesedb_python-20260704/config.sub +1890 -0
- libesedb_python-20260704/configure +67513 -0
- libesedb_python-20260704/configure.ac +272 -0
- libesedb_python-20260704/dpkg/changelog +5 -0
- libesedb_python-20260704/dpkg/compat +1 -0
- libesedb_python-20260704/dpkg/control +65 -0
- libesedb_python-20260704/dpkg/copyright +25 -0
- libesedb_python-20260704/dpkg/rules +31 -0
- libesedb_python-20260704/esedbtools/Makefile.am +115 -0
- libesedb_python-20260704/esedbtools/Makefile.in +1086 -0
- libesedb_python-20260704/esedbtools/database_types.c +203 -0
- libesedb_python-20260704/esedbtools/database_types.h +76 -0
- libesedb_python-20260704/esedbtools/esedbexport.c +578 -0
- libesedb_python-20260704/esedbtools/esedbinfo.c +312 -0
- libesedb_python-20260704/esedbtools/esedbtools_getopt.c +572 -0
- libesedb_python-20260704/esedbtools/esedbtools_getopt.h +106 -0
- libesedb_python-20260704/esedbtools/esedbtools_i18n.h +48 -0
- libesedb_python-20260704/esedbtools/esedbtools_libbfio.h +58 -0
- libesedb_python-20260704/esedbtools/esedbtools_libcdata.h +54 -0
- libesedb_python-20260704/esedbtools/esedbtools_libcerror.h +50 -0
- libesedb_python-20260704/esedbtools/esedbtools_libcfile.h +50 -0
- libesedb_python-20260704/esedbtools/esedbtools_libclocale.h +50 -0
- libesedb_python-20260704/esedbtools/esedbtools_libcnotify.h +50 -0
- libesedb_python-20260704/esedbtools/esedbtools_libcpath.h +48 -0
- libesedb_python-20260704/esedbtools/esedbtools_libesedb.h +30 -0
- libesedb_python-20260704/esedbtools/esedbtools_libfdatetime.h +56 -0
- libesedb_python-20260704/esedbtools/esedbtools_libfguid.h +49 -0
- libesedb_python-20260704/esedbtools/esedbtools_libfmapi.h +60 -0
- libesedb_python-20260704/esedbtools/esedbtools_libfvalue.h +59 -0
- libesedb_python-20260704/esedbtools/esedbtools_libfwnt.h +58 -0
- libesedb_python-20260704/esedbtools/esedbtools_libuna.h +60 -0
- libesedb_python-20260704/esedbtools/esedbtools_output.c +203 -0
- libesedb_python-20260704/esedbtools/esedbtools_output.h +55 -0
- libesedb_python-20260704/esedbtools/esedbtools_signal.c +262 -0
- libesedb_python-20260704/esedbtools/esedbtools_signal.h +72 -0
- libesedb_python-20260704/esedbtools/esedbtools_system_string.c +121 -0
- libesedb_python-20260704/esedbtools/esedbtools_system_string.h +46 -0
- libesedb_python-20260704/esedbtools/esedbtools_unused.h +50 -0
- libesedb_python-20260704/esedbtools/export.c +875 -0
- libesedb_python-20260704/esedbtools/export.h +75 -0
- libesedb_python-20260704/esedbtools/export_handle.c +4550 -0
- libesedb_python-20260704/esedbtools/export_handle.h +233 -0
- libesedb_python-20260704/esedbtools/info_handle.c +1507 -0
- libesedb_python-20260704/esedbtools/info_handle.h +116 -0
- libesedb_python-20260704/esedbtools/log_handle.c +276 -0
- libesedb_python-20260704/esedbtools/log_handle.h +71 -0
- libesedb_python-20260704/esedbtools/srumdb.c +273 -0
- libesedb_python-20260704/esedbtools/srumdb.h +48 -0
- libesedb_python-20260704/esedbtools/webcache.c +514 -0
- libesedb_python-20260704/esedbtools/webcache.h +54 -0
- libesedb_python-20260704/esedbtools/windows_search.c +3152 -0
- libesedb_python-20260704/esedbtools/windows_search.h +106 -0
- libesedb_python-20260704/esedbtools/windows_search_compression.c +278 -0
- libesedb_python-20260704/esedbtools/windows_search_compression.h +53 -0
- libesedb_python-20260704/esedbtools/windows_security.c +995 -0
- libesedb_python-20260704/esedbtools/windows_security.h +68 -0
- libesedb_python-20260704/include/Makefile.in +875 -0
- libesedb_python-20260704/include/libesedb/codepage.h +122 -0
- libesedb_python-20260704/include/libesedb/definitions.h +103 -0
- libesedb_python-20260704/include/libesedb/definitions.h.in +103 -0
- libesedb_python-20260704/include/libesedb/error.h +291 -0
- libesedb_python-20260704/include/libesedb/extern.h +47 -0
- libesedb_python-20260704/include/libesedb/features.h +50 -0
- libesedb_python-20260704/include/libesedb/features.h.in +50 -0
- libesedb_python-20260704/include/libesedb/types.h +217 -0
- libesedb_python-20260704/include/libesedb/types.h.in +217 -0
- libesedb_python-20260704/include/libesedb.h +1324 -0
- libesedb_python-20260704/include/libesedb.h.in +1324 -0
- libesedb_python-20260704/libbfio/Makefile.in +976 -0
- libesedb_python-20260704/libbfio/libbfio_codepage.h +90 -0
- libesedb_python-20260704/libbfio/libbfio_definitions.h +89 -0
- libesedb_python-20260704/libbfio/libbfio_error.c +111 -0
- libesedb_python-20260704/libbfio/libbfio_error.h +74 -0
- libesedb_python-20260704/libbfio/libbfio_extern.h +53 -0
- libesedb_python-20260704/libbfio/libbfio_file.c +444 -0
- libesedb_python-20260704/libbfio/libbfio_file.h +90 -0
- libesedb_python-20260704/libbfio/libbfio_file_io_handle.c +1198 -0
- libesedb_python-20260704/libbfio/libbfio_file_io_handle.h +152 -0
- libesedb_python-20260704/libbfio/libbfio_file_pool.c +494 -0
- libesedb_python-20260704/libbfio/libbfio_file_pool.h +81 -0
- libesedb_python-20260704/libbfio/libbfio_file_range.c +468 -0
- libesedb_python-20260704/libbfio/libbfio_file_range.h +104 -0
- libesedb_python-20260704/libbfio/libbfio_file_range_io_handle.c +1158 -0
- libesedb_python-20260704/libbfio/libbfio_file_range_io_handle.h +160 -0
- libesedb_python-20260704/libbfio/libbfio_handle.c +2708 -0
- libesedb_python-20260704/libbfio/libbfio_handle.h +363 -0
- libesedb_python-20260704/libbfio/libbfio_libcdata.h +54 -0
- libesedb_python-20260704/libbfio/libbfio_libcerror.h +50 -0
- libesedb_python-20260704/libbfio/libbfio_libcfile.h +50 -0
- libesedb_python-20260704/libbfio/libbfio_libclocale.h +50 -0
- libesedb_python-20260704/libbfio/libbfio_libcpath.h +48 -0
- libesedb_python-20260704/libbfio/libbfio_libcthreads.h +64 -0
- libesedb_python-20260704/libbfio/libbfio_libuna.h +60 -0
- libesedb_python-20260704/libbfio/libbfio_memory_range.c +205 -0
- libesedb_python-20260704/libbfio/libbfio_memory_range.h +60 -0
- libesedb_python-20260704/libbfio/libbfio_memory_range_io_handle.c +871 -0
- libesedb_python-20260704/libbfio/libbfio_memory_range_io_handle.h +129 -0
- libesedb_python-20260704/libbfio/libbfio_pool.c +3523 -0
- libesedb_python-20260704/libbfio/libbfio_pool.h +275 -0
- libesedb_python-20260704/libbfio/libbfio_support.c +93 -0
- libesedb_python-20260704/libbfio/libbfio_support.h +58 -0
- libesedb_python-20260704/libbfio/libbfio_system_string.c +1017 -0
- libesedb_python-20260704/libbfio/libbfio_system_string.h +95 -0
- libesedb_python-20260704/libbfio/libbfio_types.h +49 -0
- libesedb_python-20260704/libbfio/libbfio_unused.h +44 -0
- libesedb_python-20260704/libcdata/Makefile.in +955 -0
- libesedb_python-20260704/libcdata/libcdata_array.c +2015 -0
- libesedb_python-20260704/libcdata/libcdata_array.h +200 -0
- libesedb_python-20260704/libcdata/libcdata_btree.c +964 -0
- libesedb_python-20260704/libcdata/libcdata_btree.h +141 -0
- libesedb_python-20260704/libcdata/libcdata_btree_node.c +1607 -0
- libesedb_python-20260704/libcdata/libcdata_btree_node.h +101 -0
- libesedb_python-20260704/libcdata/libcdata_btree_values_list.c +217 -0
- libesedb_python-20260704/libcdata/libcdata_btree_values_list.h +55 -0
- libesedb_python-20260704/libcdata/libcdata_definitions.h +81 -0
- libesedb_python-20260704/libcdata/libcdata_error.c +111 -0
- libesedb_python-20260704/libcdata/libcdata_error.h +74 -0
- libesedb_python-20260704/libcdata/libcdata_extern.h +53 -0
- libesedb_python-20260704/libcdata/libcdata_libcerror.h +50 -0
- libesedb_python-20260704/libcdata/libcdata_libcthreads.h +64 -0
- libesedb_python-20260704/libcdata/libcdata_list.c +2906 -0
- libesedb_python-20260704/libcdata/libcdata_list.h +235 -0
- libesedb_python-20260704/libcdata/libcdata_list_element.c +926 -0
- libesedb_python-20260704/libcdata/libcdata_list_element.h +142 -0
- libesedb_python-20260704/libcdata/libcdata_range_list.c +4922 -0
- libesedb_python-20260704/libcdata/libcdata_range_list.h +382 -0
- libesedb_python-20260704/libcdata/libcdata_range_list_value.c +429 -0
- libesedb_python-20260704/libcdata/libcdata_range_list_value.h +100 -0
- libesedb_python-20260704/libcdata/libcdata_support.c +39 -0
- libesedb_python-20260704/libcdata/libcdata_support.h +47 -0
- libesedb_python-20260704/libcdata/libcdata_tree_node.c +4271 -0
- libesedb_python-20260704/libcdata/libcdata_tree_node.h +308 -0
- libesedb_python-20260704/libcdata/libcdata_types.h +57 -0
- libesedb_python-20260704/libcdata/libcdata_unused.h +44 -0
- libesedb_python-20260704/libcerror/Makefile.in +897 -0
- libesedb_python-20260704/libcerror/libcerror_definitions.h +326 -0
- libesedb_python-20260704/libcerror/libcerror_error.c +827 -0
- libesedb_python-20260704/libcerror/libcerror_error.h +125 -0
- libesedb_python-20260704/libcerror/libcerror_extern.h +53 -0
- libesedb_python-20260704/libcerror/libcerror_support.c +39 -0
- libesedb_python-20260704/libcerror/libcerror_support.h +47 -0
- libesedb_python-20260704/libcerror/libcerror_system.c +569 -0
- libesedb_python-20260704/libcerror/libcerror_system.h +78 -0
- libesedb_python-20260704/libcerror/libcerror_types.h +51 -0
- libesedb_python-20260704/libcerror/libcerror_unused.h +44 -0
- libesedb_python-20260704/libcfile/Makefile.in +924 -0
- libesedb_python-20260704/libcfile/libcfile_definitions.h +101 -0
- libesedb_python-20260704/libcfile/libcfile_error.c +111 -0
- libesedb_python-20260704/libcfile/libcfile_error.h +74 -0
- libesedb_python-20260704/libcfile/libcfile_extern.h +53 -0
- libesedb_python-20260704/libcfile/libcfile_file.c +5022 -0
- libesedb_python-20260704/libcfile/libcfile_file.h +277 -0
- libesedb_python-20260704/libcfile/libcfile_libcerror.h +50 -0
- libesedb_python-20260704/libcfile/libcfile_libclocale.h +50 -0
- libesedb_python-20260704/libcfile/libcfile_libcnotify.h +50 -0
- libesedb_python-20260704/libcfile/libcfile_libuna.h +60 -0
- libesedb_python-20260704/libcfile/libcfile_notify.c +120 -0
- libesedb_python-20260704/libcfile/libcfile_notify.h +63 -0
- libesedb_python-20260704/libcfile/libcfile_support.c +1171 -0
- libesedb_python-20260704/libcfile/libcfile_support.h +98 -0
- libesedb_python-20260704/libcfile/libcfile_system_string.c +1017 -0
- libesedb_python-20260704/libcfile/libcfile_system_string.h +95 -0
- libesedb_python-20260704/libcfile/libcfile_types.h +47 -0
- libesedb_python-20260704/libcfile/libcfile_unused.h +44 -0
- libesedb_python-20260704/libcfile/libcfile_winapi.c +815 -0
- libesedb_python-20260704/libcfile/libcfile_winapi.h +122 -0
- libesedb_python-20260704/libclocale/Makefile.in +907 -0
- libesedb_python-20260704/libclocale/libclocale_codepage.c +950 -0
- libesedb_python-20260704/libclocale/libclocale_codepage.h +73 -0
- libesedb_python-20260704/libclocale/libclocale_definitions.h +106 -0
- libesedb_python-20260704/libclocale/libclocale_extern.h +53 -0
- libesedb_python-20260704/libclocale/libclocale_libcerror.h +50 -0
- libesedb_python-20260704/libclocale/libclocale_locale.c +494 -0
- libesedb_python-20260704/libclocale/libclocale_locale.h +66 -0
- libesedb_python-20260704/libclocale/libclocale_support.c +130 -0
- libesedb_python-20260704/libclocale/libclocale_support.h +55 -0
- libesedb_python-20260704/libclocale/libclocale_unused.h +44 -0
- libesedb_python-20260704/libclocale/libclocale_wide_string.c +69 -0
- libesedb_python-20260704/libclocale/libclocale_wide_string.h +54 -0
- libesedb_python-20260704/libcnotify/Makefile.in +905 -0
- libesedb_python-20260704/libcnotify/libcnotify_definitions.h +54 -0
- libesedb_python-20260704/libcnotify/libcnotify_extern.h +53 -0
- libesedb_python-20260704/libcnotify/libcnotify_libcerror.h +50 -0
- libesedb_python-20260704/libcnotify/libcnotify_print.c +386 -0
- libesedb_python-20260704/libcnotify/libcnotify_print.h +68 -0
- libesedb_python-20260704/libcnotify/libcnotify_stream.c +182 -0
- libesedb_python-20260704/libcnotify/libcnotify_stream.h +59 -0
- libesedb_python-20260704/libcnotify/libcnotify_support.c +39 -0
- libesedb_python-20260704/libcnotify/libcnotify_support.h +49 -0
- libesedb_python-20260704/libcnotify/libcnotify_unused.h +44 -0
- libesedb_python-20260704/libcnotify/libcnotify_verbose.c +38 -0
- libesedb_python-20260704/libcnotify/libcnotify_verbose.h +46 -0
- libesedb_python-20260704/libcpath/Makefile.in +909 -0
- libesedb_python-20260704/libcpath/libcpath_definitions.h +79 -0
- libesedb_python-20260704/libcpath/libcpath_error.c +111 -0
- libesedb_python-20260704/libcpath/libcpath_error.h +74 -0
- libesedb_python-20260704/libcpath/libcpath_extern.h +53 -0
- libesedb_python-20260704/libcpath/libcpath_libcerror.h +50 -0
- libesedb_python-20260704/libcpath/libcpath_libclocale.h +50 -0
- libesedb_python-20260704/libcpath/libcpath_libcsplit.h +52 -0
- libesedb_python-20260704/libcpath/libcpath_libuna.h +60 -0
- libesedb_python-20260704/libcpath/libcpath_path.c +7508 -0
- libesedb_python-20260704/libcpath/libcpath_path.h +293 -0
- libesedb_python-20260704/libcpath/libcpath_support.c +93 -0
- libesedb_python-20260704/libcpath/libcpath_support.h +58 -0
- libesedb_python-20260704/libcpath/libcpath_system_string.c +1017 -0
- libesedb_python-20260704/libcpath/libcpath_system_string.h +95 -0
- libesedb_python-20260704/libcpath/libcpath_unused.h +44 -0
- libesedb_python-20260704/libcsplit/Makefile.in +922 -0
- libesedb_python-20260704/libcsplit/libcsplit_definitions.h +47 -0
- libesedb_python-20260704/libcsplit/libcsplit_error.c +111 -0
- libesedb_python-20260704/libcsplit/libcsplit_error.h +74 -0
- libesedb_python-20260704/libcsplit/libcsplit_extern.h +53 -0
- libesedb_python-20260704/libcsplit/libcsplit_libcerror.h +50 -0
- libesedb_python-20260704/libcsplit/libcsplit_narrow_split_string.c +547 -0
- libesedb_python-20260704/libcsplit/libcsplit_narrow_split_string.h +107 -0
- libesedb_python-20260704/libcsplit/libcsplit_narrow_string.c +288 -0
- libesedb_python-20260704/libcsplit/libcsplit_narrow_string.h +49 -0
- libesedb_python-20260704/libcsplit/libcsplit_support.c +39 -0
- libesedb_python-20260704/libcsplit/libcsplit_support.h +47 -0
- libesedb_python-20260704/libcsplit/libcsplit_types.h +49 -0
- libesedb_python-20260704/libcsplit/libcsplit_unused.h +44 -0
- libesedb_python-20260704/libcsplit/libcsplit_wide_split_string.c +551 -0
- libesedb_python-20260704/libcsplit/libcsplit_wide_split_string.h +111 -0
- libesedb_python-20260704/libcsplit/libcsplit_wide_string.c +292 -0
- libesedb_python-20260704/libcsplit/libcsplit_wide_string.h +53 -0
- libesedb_python-20260704/libcthreads/Makefile.in +957 -0
- libesedb_python-20260704/libcthreads/libcthreads_condition.c +735 -0
- libesedb_python-20260704/libcthreads/libcthreads_condition.h +120 -0
- libesedb_python-20260704/libcthreads/libcthreads_definitions.h +84 -0
- libesedb_python-20260704/libcthreads/libcthreads_error.c +111 -0
- libesedb_python-20260704/libcthreads/libcthreads_error.h +74 -0
- libesedb_python-20260704/libcthreads/libcthreads_extern.h +53 -0
- libesedb_python-20260704/libcthreads/libcthreads_libcerror.h +50 -0
- libesedb_python-20260704/libcthreads/libcthreads_lock.c +391 -0
- libesedb_python-20260704/libcthreads/libcthreads_lock.h +88 -0
- libesedb_python-20260704/libcthreads/libcthreads_mutex.c +601 -0
- libesedb_python-20260704/libcthreads/libcthreads_mutex.h +98 -0
- libesedb_python-20260704/libcthreads/libcthreads_queue.c +1150 -0
- libesedb_python-20260704/libcthreads/libcthreads_queue.h +136 -0
- libesedb_python-20260704/libcthreads/libcthreads_read_write_lock.c +690 -0
- libesedb_python-20260704/libcthreads/libcthreads_read_write_lock.h +119 -0
- libesedb_python-20260704/libcthreads/libcthreads_repeating_thread.c +683 -0
- libesedb_python-20260704/libcthreads/libcthreads_repeating_thread.h +123 -0
- libesedb_python-20260704/libcthreads/libcthreads_support.c +39 -0
- libesedb_python-20260704/libcthreads/libcthreads_support.h +47 -0
- libesedb_python-20260704/libcthreads/libcthreads_thread.c +411 -0
- libesedb_python-20260704/libcthreads/libcthreads_thread.h +95 -0
- libesedb_python-20260704/libcthreads/libcthreads_thread_attributes.c +149 -0
- libesedb_python-20260704/libcthreads/libcthreads_thread_attributes.h +78 -0
- libesedb_python-20260704/libcthreads/libcthreads_thread_pool.c +1725 -0
- libesedb_python-20260704/libcthreads/libcthreads_thread_pool.h +177 -0
- libesedb_python-20260704/libcthreads/libcthreads_types.h +63 -0
- libesedb_python-20260704/libcthreads/libcthreads_unused.h +44 -0
- libesedb_python-20260704/libesedb/Makefile.in +1213 -0
- libesedb_python-20260704/libesedb/esedb_file_header.h +352 -0
- libesedb_python-20260704/libesedb/esedb_page.h +146 -0
- libesedb_python-20260704/libesedb/esedb_page_values.h +273 -0
- libesedb_python-20260704/libesedb/libesedb.c +84 -0
- libesedb_python-20260704/libesedb/libesedb.rc +38 -0
- libesedb_python-20260704/libesedb/libesedb.rc.in +38 -0
- libesedb_python-20260704/libesedb/libesedb_block_descriptor.c +131 -0
- libesedb_python-20260704/libesedb/libesedb_block_descriptor.h +56 -0
- libesedb_python-20260704/libesedb/libesedb_block_tree.c +474 -0
- libesedb_python-20260704/libesedb/libesedb_block_tree.h +83 -0
- libesedb_python-20260704/libesedb/libesedb_block_tree_node.c +613 -0
- libesedb_python-20260704/libesedb/libesedb_block_tree_node.h +109 -0
- libesedb_python-20260704/libesedb/libesedb_catalog.c +1385 -0
- libesedb_python-20260704/libesedb/libesedb_catalog.h +126 -0
- libesedb_python-20260704/libesedb/libesedb_catalog_definition.c +1897 -0
- libesedb_python-20260704/libesedb/libesedb_catalog_definition.h +204 -0
- libesedb_python-20260704/libesedb/libesedb_checksum.c +595 -0
- libesedb_python-20260704/libesedb/libesedb_checksum.h +55 -0
- libesedb_python-20260704/libesedb/libesedb_codepage.c +108 -0
- libesedb_python-20260704/libesedb/libesedb_codepage.h +116 -0
- libesedb_python-20260704/libesedb/libesedb_column.c +471 -0
- libesedb_python-20260704/libesedb/libesedb_column.h +105 -0
- libesedb_python-20260704/libesedb/libesedb_column_type.c +91 -0
- libesedb_python-20260704/libesedb/libesedb_column_type.h +64 -0
- libesedb_python-20260704/libesedb/libesedb_compression.c +1328 -0
- libesedb_python-20260704/libesedb/libesedb_compression.h +104 -0
- libesedb_python-20260704/libesedb/libesedb_data_definition.c +2042 -0
- libesedb_python-20260704/libesedb/libesedb_data_definition.h +118 -0
- libesedb_python-20260704/libesedb/libesedb_data_segment.c +406 -0
- libesedb_python-20260704/libesedb/libesedb_data_segment.h +86 -0
- libesedb_python-20260704/libesedb/libesedb_database.c +605 -0
- libesedb_python-20260704/libesedb/libesedb_database.h +80 -0
- libesedb_python-20260704/libesedb/libesedb_debug.c +772 -0
- libesedb_python-20260704/libesedb/libesedb_debug.h +85 -0
- libesedb_python-20260704/libesedb/libesedb_definitions.h +258 -0
- libesedb_python-20260704/libesedb/libesedb_definitions.h.in +258 -0
- libesedb_python-20260704/libesedb/libesedb_error.c +111 -0
- libesedb_python-20260704/libesedb/libesedb_error.h +74 -0
- libesedb_python-20260704/libesedb/libesedb_extern.h +53 -0
- libesedb_python-20260704/libesedb/libesedb_file.c +2168 -0
- libesedb_python-20260704/libesedb/libesedb_file.h +198 -0
- libesedb_python-20260704/libesedb/libesedb_file_header.c +800 -0
- libesedb_python-20260704/libesedb/libesedb_file_header.h +93 -0
- libesedb_python-20260704/libesedb/libesedb_i18n.c +65 -0
- libesedb_python-20260704/libesedb/libesedb_i18n.h +55 -0
- libesedb_python-20260704/libesedb/libesedb_index.c +744 -0
- libesedb_python-20260704/libesedb/libesedb_index.h +166 -0
- libesedb_python-20260704/libesedb/libesedb_io_handle.c +310 -0
- libesedb_python-20260704/libesedb/libesedb_io_handle.h +130 -0
- libesedb_python-20260704/libesedb/libesedb_lcid.c +474 -0
- libesedb_python-20260704/libesedb/libesedb_lcid.h +64 -0
- libesedb_python-20260704/libesedb/libesedb_leaf_page_descriptor.c +177 -0
- libesedb_python-20260704/libesedb/libesedb_leaf_page_descriptor.h +69 -0
- libesedb_python-20260704/libesedb/libesedb_libbfio.h +58 -0
- libesedb_python-20260704/libesedb/libesedb_libcdata.h +54 -0
- libesedb_python-20260704/libesedb/libesedb_libcerror.h +50 -0
- libesedb_python-20260704/libesedb/libesedb_libclocale.h +50 -0
- libesedb_python-20260704/libesedb/libesedb_libcnotify.h +50 -0
- libesedb_python-20260704/libesedb/libesedb_libfcache.h +50 -0
- libesedb_python-20260704/libesedb/libesedb_libfdata.h +54 -0
- libesedb_python-20260704/libesedb/libesedb_libfvalue.h +60 -0
- libesedb_python-20260704/libesedb/libesedb_libfwnt.h +58 -0
- libesedb_python-20260704/libesedb/libesedb_libuna.h +60 -0
- libesedb_python-20260704/libesedb/libesedb_long_value.c +1379 -0
- libesedb_python-20260704/libesedb/libesedb_long_value.h +154 -0
- libesedb_python-20260704/libesedb/libesedb_multi_value.c +1606 -0
- libesedb_python-20260704/libesedb/libesedb_multi_value.h +213 -0
- libesedb_python-20260704/libesedb/libesedb_notify.c +120 -0
- libesedb_python-20260704/libesedb/libesedb_notify.h +63 -0
- libesedb_python-20260704/libesedb/libesedb_page.c +1669 -0
- libesedb_python-20260704/libesedb/libesedb_page.h +156 -0
- libesedb_python-20260704/libesedb/libesedb_page_header.c +593 -0
- libesedb_python-20260704/libesedb/libesedb_page_header.h +116 -0
- libesedb_python-20260704/libesedb/libesedb_page_tree.c +3290 -0
- libesedb_python-20260704/libesedb/libesedb_page_tree.h +201 -0
- libesedb_python-20260704/libesedb/libesedb_page_tree_key.c +697 -0
- libesedb_python-20260704/libesedb/libesedb_page_tree_key.h +81 -0
- libesedb_python-20260704/libesedb/libesedb_page_tree_value.c +310 -0
- libesedb_python-20260704/libesedb/libesedb_page_tree_value.h +79 -0
- libesedb_python-20260704/libesedb/libesedb_page_value.c +133 -0
- libesedb_python-20260704/libesedb/libesedb_page_value.h +68 -0
- libesedb_python-20260704/libesedb/libesedb_record.c +3907 -0
- libesedb_python-20260704/libesedb/libesedb_record.h +343 -0
- libesedb_python-20260704/libesedb/libesedb_record_value.c +506 -0
- libesedb_python-20260704/libesedb/libesedb_record_value.h +62 -0
- libesedb_python-20260704/libesedb/libesedb_root_page_header.c +288 -0
- libesedb_python-20260704/libesedb/libesedb_root_page_header.h +70 -0
- libesedb_python-20260704/libesedb/libesedb_space_tree.c +862 -0
- libesedb_python-20260704/libesedb/libesedb_space_tree.h +79 -0
- libesedb_python-20260704/libesedb/libesedb_space_tree_value.c +209 -0
- libesedb_python-20260704/libesedb/libesedb_space_tree_value.h +62 -0
- libesedb_python-20260704/libesedb/libesedb_support.c +430 -0
- libesedb_python-20260704/libesedb/libesedb_support.h +82 -0
- libesedb_python-20260704/libesedb/libesedb_table.c +1564 -0
- libesedb_python-20260704/libesedb/libesedb_table.h +204 -0
- libesedb_python-20260704/libesedb/libesedb_table_definition.c +682 -0
- libesedb_python-20260704/libesedb/libesedb_table_definition.h +117 -0
- libesedb_python-20260704/libesedb/libesedb_types.h +59 -0
- libesedb_python-20260704/libesedb/libesedb_unused.h +44 -0
- libesedb_python-20260704/libesedb/libesedb_value_data_handle.c +223 -0
- libesedb_python-20260704/libesedb/libesedb_value_data_handle.h +49 -0
- libesedb_python-20260704/libesedb.spec +100 -0
- libesedb_python-20260704/libfcache/Makefile.in +918 -0
- libesedb_python-20260704/libfcache/libfcache_cache.c +1118 -0
- libesedb_python-20260704/libfcache/libfcache_cache.h +149 -0
- libesedb_python-20260704/libfcache/libfcache_cache_value.c +502 -0
- libesedb_python-20260704/libfcache/libfcache_cache_value.h +132 -0
- libesedb_python-20260704/libfcache/libfcache_date_time.c +92 -0
- libesedb_python-20260704/libfcache/libfcache_date_time.h +45 -0
- libesedb_python-20260704/libfcache/libfcache_definitions.h +58 -0
- libesedb_python-20260704/libfcache/libfcache_error.c +111 -0
- libesedb_python-20260704/libfcache/libfcache_error.h +74 -0
- libesedb_python-20260704/libfcache/libfcache_extern.h +40 -0
- libesedb_python-20260704/libfcache/libfcache_libcdata.h +54 -0
- libesedb_python-20260704/libfcache/libfcache_libcerror.h +50 -0
- libesedb_python-20260704/libfcache/libfcache_support.c +41 -0
- libesedb_python-20260704/libfcache/libfcache_support.h +47 -0
- libesedb_python-20260704/libfcache/libfcache_types.h +49 -0
- libesedb_python-20260704/libfcache/libfcache_unused.h +44 -0
- libesedb_python-20260704/libfdata/Makefile.in +971 -0
- libesedb_python-20260704/libfdata/libfdata_area.c +1482 -0
- libesedb_python-20260704/libfdata/libfdata_area.h +278 -0
- libesedb_python-20260704/libfdata/libfdata_cache.c +59 -0
- libesedb_python-20260704/libfdata/libfdata_cache.h +56 -0
- libesedb_python-20260704/libfdata/libfdata_definitions.h +249 -0
- libesedb_python-20260704/libfdata/libfdata_error.c +111 -0
- libesedb_python-20260704/libfdata/libfdata_error.h +74 -0
- libesedb_python-20260704/libfdata/libfdata_extern.h +40 -0
- libesedb_python-20260704/libfdata/libfdata_libcdata.h +54 -0
- libesedb_python-20260704/libfdata/libfdata_libcerror.h +50 -0
- libesedb_python-20260704/libfdata/libfdata_libcnotify.h +50 -0
- libesedb_python-20260704/libfdata/libfdata_libfcache.h +50 -0
- libesedb_python-20260704/libfdata/libfdata_list.c +4426 -0
- libesedb_python-20260704/libfdata/libfdata_list.h +452 -0
- libesedb_python-20260704/libfdata/libfdata_list_element.c +824 -0
- libesedb_python-20260704/libfdata/libfdata_list_element.h +159 -0
- libesedb_python-20260704/libfdata/libfdata_mapped_range.c +312 -0
- libesedb_python-20260704/libfdata/libfdata_mapped_range.h +77 -0
- libesedb_python-20260704/libfdata/libfdata_notify.c +120 -0
- libesedb_python-20260704/libfdata/libfdata_notify.h +63 -0
- libesedb_python-20260704/libfdata/libfdata_range.c +358 -0
- libesedb_python-20260704/libfdata/libfdata_range.h +94 -0
- libesedb_python-20260704/libfdata/libfdata_range_list.c +1196 -0
- libesedb_python-20260704/libfdata/libfdata_range_list.h +214 -0
- libesedb_python-20260704/libfdata/libfdata_segments_array.c +914 -0
- libesedb_python-20260704/libfdata/libfdata_segments_array.h +94 -0
- libesedb_python-20260704/libfdata/libfdata_stream.c +2582 -0
- libesedb_python-20260704/libfdata/libfdata_stream.h +363 -0
- libesedb_python-20260704/libfdata/libfdata_support.c +41 -0
- libesedb_python-20260704/libfdata/libfdata_support.h +47 -0
- libesedb_python-20260704/libfdata/libfdata_types.h +59 -0
- libesedb_python-20260704/libfdata/libfdata_unused.h +44 -0
- libesedb_python-20260704/libfdata/libfdata_vector.c +1932 -0
- libesedb_python-20260704/libfdata/libfdata_vector.h +295 -0
- libesedb_python-20260704/libfdatetime/Makefile.in +949 -0
- libesedb_python-20260704/libfdatetime/libfdatetime_date_time_values.c +1906 -0
- libesedb_python-20260704/libfdatetime/libfdatetime_date_time_values.h +121 -0
- libesedb_python-20260704/libfdatetime/libfdatetime_definitions.h +121 -0
- libesedb_python-20260704/libfdatetime/libfdatetime_error.c +111 -0
- libesedb_python-20260704/libfdatetime/libfdatetime_error.h +74 -0
- libesedb_python-20260704/libfdatetime/libfdatetime_extern.h +40 -0
- libesedb_python-20260704/libfdatetime/libfdatetime_fat_date_time.c +1258 -0
- libesedb_python-20260704/libfdatetime/libfdatetime_fat_date_time.h +172 -0
- libesedb_python-20260704/libfdatetime/libfdatetime_filetime.c +1465 -0
- libesedb_python-20260704/libfdatetime/libfdatetime_filetime.h +177 -0
- libesedb_python-20260704/libfdatetime/libfdatetime_floatingtime.c +1333 -0
- libesedb_python-20260704/libfdatetime/libfdatetime_floatingtime.h +168 -0
- libesedb_python-20260704/libfdatetime/libfdatetime_hfs_time.c +1329 -0
- libesedb_python-20260704/libfdatetime/libfdatetime_hfs_time.h +166 -0
- libesedb_python-20260704/libfdatetime/libfdatetime_libcerror.h +50 -0
- libesedb_python-20260704/libfdatetime/libfdatetime_nsf_timedate.c +1373 -0
- libesedb_python-20260704/libfdatetime/libfdatetime_nsf_timedate.h +177 -0
- libesedb_python-20260704/libfdatetime/libfdatetime_posix_time.c +1918 -0
- libesedb_python-20260704/libfdatetime/libfdatetime_posix_time.h +189 -0
- libesedb_python-20260704/libfdatetime/libfdatetime_support.c +41 -0
- libesedb_python-20260704/libfdatetime/libfdatetime_support.h +47 -0
- libesedb_python-20260704/libfdatetime/libfdatetime_systemtime.c +1779 -0
- libesedb_python-20260704/libfdatetime/libfdatetime_systemtime.h +180 -0
- libesedb_python-20260704/libfdatetime/libfdatetime_types.h +63 -0
- libesedb_python-20260704/libfdatetime/libfdatetime_unused.h +44 -0
- libesedb_python-20260704/libfguid/Makefile.in +899 -0
- libesedb_python-20260704/libfguid/libfguid_definitions.h +84 -0
- libesedb_python-20260704/libfguid/libfguid_error.c +111 -0
- libesedb_python-20260704/libfguid/libfguid_error.h +74 -0
- libesedb_python-20260704/libfguid/libfguid_extern.h +40 -0
- libesedb_python-20260704/libfguid/libfguid_identifier.c +2524 -0
- libesedb_python-20260704/libfguid/libfguid_identifier.h +204 -0
- libesedb_python-20260704/libfguid/libfguid_libcerror.h +50 -0
- libesedb_python-20260704/libfguid/libfguid_support.c +41 -0
- libesedb_python-20260704/libfguid/libfguid_support.h +47 -0
- libesedb_python-20260704/libfguid/libfguid_types.h +47 -0
- libesedb_python-20260704/libfguid/libfguid_unused.h +44 -0
- libesedb_python-20260704/libfmapi/Makefile.in +978 -0
- libesedb_python-20260704/libfmapi/libfmapi_checksum.c +204 -0
- libesedb_python-20260704/libfmapi/libfmapi_checksum.h +63 -0
- libesedb_python-20260704/libfmapi/libfmapi_class_identifier.c +131 -0
- libesedb_python-20260704/libfmapi/libfmapi_class_identifier.h +114 -0
- libesedb_python-20260704/libfmapi/libfmapi_codepage.c +108 -0
- libesedb_python-20260704/libfmapi/libfmapi_codepage.h +63 -0
- libesedb_python-20260704/libfmapi/libfmapi_debug.c +5766 -0
- libesedb_python-20260704/libfmapi/libfmapi_debug.h +113 -0
- libesedb_python-20260704/libfmapi/libfmapi_definitions.h +73 -0
- libesedb_python-20260704/libfmapi/libfmapi_entry_identifier.c +414 -0
- libesedb_python-20260704/libfmapi/libfmapi_entry_identifier.h +78 -0
- libesedb_python-20260704/libfmapi/libfmapi_error.c +111 -0
- libesedb_python-20260704/libfmapi/libfmapi_error.h +74 -0
- libesedb_python-20260704/libfmapi/libfmapi_extern.h +40 -0
- libesedb_python-20260704/libfmapi/libfmapi_libcerror.h +50 -0
- libesedb_python-20260704/libfmapi/libfmapi_libcnotify.h +50 -0
- libesedb_python-20260704/libfmapi/libfmapi_libfdatetime.h +56 -0
- libesedb_python-20260704/libfmapi/libfmapi_libfguid.h +49 -0
- libesedb_python-20260704/libfmapi/libfmapi_libfwnt.h +58 -0
- libesedb_python-20260704/libfmapi/libfmapi_libuna.h +60 -0
- libesedb_python-20260704/libfmapi/libfmapi_lzfu.c +616 -0
- libesedb_python-20260704/libfmapi/libfmapi_lzfu.h +78 -0
- libesedb_python-20260704/libfmapi/libfmapi_one_off_entry_identifier.c +1474 -0
- libesedb_python-20260704/libfmapi/libfmapi_one_off_entry_identifier.h +190 -0
- libesedb_python-20260704/libfmapi/libfmapi_property_type.c +3113 -0
- libesedb_python-20260704/libfmapi/libfmapi_property_type.h +131 -0
- libesedb_python-20260704/libfmapi/libfmapi_service_provider_identifier.c +82 -0
- libesedb_python-20260704/libfmapi/libfmapi_service_provider_identifier.h +48 -0
- libesedb_python-20260704/libfmapi/libfmapi_support.c +39 -0
- libesedb_python-20260704/libfmapi/libfmapi_support.h +47 -0
- libesedb_python-20260704/libfmapi/libfmapi_types.h +49 -0
- libesedb_python-20260704/libfmapi/libfmapi_unused.h +44 -0
- libesedb_python-20260704/libfmapi/libfmapi_value_type.c +105 -0
- libesedb_python-20260704/libfmapi/libfmapi_value_type.h +64 -0
- libesedb_python-20260704/libfmapi/libfmapi_x400_object_identifier.h +73 -0
- libesedb_python-20260704/libfvalue/Makefile.in +1008 -0
- libesedb_python-20260704/libfvalue/libfvalue_binary_data.c +1390 -0
- libesedb_python-20260704/libfvalue/libfvalue_binary_data.h +114 -0
- libesedb_python-20260704/libfvalue/libfvalue_codepage.h +103 -0
- libesedb_python-20260704/libfvalue/libfvalue_data_handle.c +1661 -0
- libesedb_python-20260704/libfvalue/libfvalue_data_handle.h +195 -0
- libesedb_python-20260704/libfvalue/libfvalue_definitions.h +350 -0
- libesedb_python-20260704/libfvalue/libfvalue_error.c +111 -0
- libesedb_python-20260704/libfvalue/libfvalue_error.h +74 -0
- libesedb_python-20260704/libfvalue/libfvalue_extern.h +40 -0
- libesedb_python-20260704/libfvalue/libfvalue_filetime.c +113 -0
- libesedb_python-20260704/libfvalue/libfvalue_filetime.h +56 -0
- libesedb_python-20260704/libfvalue/libfvalue_floating_point.c +3472 -0
- libesedb_python-20260704/libfvalue/libfvalue_floating_point.h +246 -0
- libesedb_python-20260704/libfvalue/libfvalue_integer.c +2908 -0
- libesedb_python-20260704/libfvalue/libfvalue_integer.h +261 -0
- libesedb_python-20260704/libfvalue/libfvalue_libcdata.h +54 -0
- libesedb_python-20260704/libfvalue/libfvalue_libcerror.h +50 -0
- libesedb_python-20260704/libfvalue/libfvalue_libcnotify.h +50 -0
- libesedb_python-20260704/libfvalue/libfvalue_libfdatetime.h +58 -0
- libesedb_python-20260704/libfvalue/libfvalue_libfguid.h +51 -0
- libesedb_python-20260704/libfvalue/libfvalue_libfwnt.h +57 -0
- libesedb_python-20260704/libfvalue/libfvalue_libuna.h +60 -0
- libesedb_python-20260704/libfvalue/libfvalue_split_utf16_string.c +546 -0
- libesedb_python-20260704/libfvalue/libfvalue_split_utf16_string.h +114 -0
- libesedb_python-20260704/libfvalue/libfvalue_split_utf8_string.c +535 -0
- libesedb_python-20260704/libfvalue/libfvalue_split_utf8_string.h +114 -0
- libesedb_python-20260704/libfvalue/libfvalue_string.c +3070 -0
- libesedb_python-20260704/libfvalue/libfvalue_string.h +165 -0
- libesedb_python-20260704/libfvalue/libfvalue_support.c +41 -0
- libesedb_python-20260704/libfvalue/libfvalue_support.h +47 -0
- libesedb_python-20260704/libfvalue/libfvalue_table.c +1357 -0
- libesedb_python-20260704/libfvalue/libfvalue_table.h +136 -0
- libesedb_python-20260704/libfvalue/libfvalue_types.h +55 -0
- libesedb_python-20260704/libfvalue/libfvalue_unused.h +44 -0
- libesedb_python-20260704/libfvalue/libfvalue_utf16_string.c +300 -0
- libesedb_python-20260704/libfvalue/libfvalue_utf16_string.h +50 -0
- libesedb_python-20260704/libfvalue/libfvalue_utf8_string.c +300 -0
- libesedb_python-20260704/libfvalue/libfvalue_utf8_string.h +50 -0
- libesedb_python-20260704/libfvalue/libfvalue_value.c +5244 -0
- libesedb_python-20260704/libfvalue/libfvalue_value.h +753 -0
- libesedb_python-20260704/libfvalue/libfvalue_value_entry.c +210 -0
- libesedb_python-20260704/libfvalue/libfvalue_value_entry.h +65 -0
- libesedb_python-20260704/libfvalue/libfvalue_value_type.c +1183 -0
- libesedb_python-20260704/libfvalue/libfvalue_value_type.h +100 -0
- libesedb_python-20260704/libfwnt/Makefile.in +976 -0
- libesedb_python-20260704/libfwnt/libfwnt_access_control_entry.c +764 -0
- libesedb_python-20260704/libfwnt/libfwnt_access_control_entry.h +116 -0
- libesedb_python-20260704/libfwnt/libfwnt_access_control_list.c +516 -0
- libesedb_python-20260704/libfwnt/libfwnt_access_control_list.h +93 -0
- libesedb_python-20260704/libfwnt/libfwnt_bit_stream.c +308 -0
- libesedb_python-20260704/libfwnt/libfwnt_bit_stream.h +85 -0
- libesedb_python-20260704/libfwnt/libfwnt_debug.c +355 -0
- libesedb_python-20260704/libfwnt/libfwnt_debug.h +53 -0
- libesedb_python-20260704/libfwnt/libfwnt_definitions.h +112 -0
- libesedb_python-20260704/libfwnt/libfwnt_error.c +111 -0
- libesedb_python-20260704/libfwnt/libfwnt_error.h +74 -0
- libesedb_python-20260704/libfwnt/libfwnt_extern.h +40 -0
- libesedb_python-20260704/libfwnt/libfwnt_huffman_tree.c +600 -0
- libesedb_python-20260704/libfwnt/libfwnt_huffman_tree.h +79 -0
- libesedb_python-20260704/libfwnt/libfwnt_libcdata.h +54 -0
- libesedb_python-20260704/libfwnt/libfwnt_libcerror.h +50 -0
- libesedb_python-20260704/libfwnt/libfwnt_libcnotify.h +50 -0
- libesedb_python-20260704/libfwnt/libfwnt_locale_identifier.c +470 -0
- libesedb_python-20260704/libfwnt/libfwnt_locale_identifier.h +63 -0
- libesedb_python-20260704/libfwnt/libfwnt_lznt1.c +560 -0
- libesedb_python-20260704/libfwnt/libfwnt_lznt1.h +57 -0
- libesedb_python-20260704/libfwnt/libfwnt_lzx.c +1465 -0
- libesedb_python-20260704/libfwnt/libfwnt_lzx.h +95 -0
- libesedb_python-20260704/libfwnt/libfwnt_lzxpress.c +1041 -0
- libesedb_python-20260704/libfwnt/libfwnt_lzxpress.h +86 -0
- libesedb_python-20260704/libfwnt/libfwnt_notify.c +120 -0
- libesedb_python-20260704/libfwnt/libfwnt_notify.h +63 -0
- libesedb_python-20260704/libfwnt/libfwnt_security_descriptor.c +1027 -0
- libesedb_python-20260704/libfwnt/libfwnt_security_descriptor.h +116 -0
- libesedb_python-20260704/libfwnt/libfwnt_security_identifier.c +1176 -0
- libesedb_python-20260704/libfwnt/libfwnt_security_identifier.h +166 -0
- libesedb_python-20260704/libfwnt/libfwnt_support.c +41 -0
- libesedb_python-20260704/libfwnt/libfwnt_support.h +47 -0
- libesedb_python-20260704/libfwnt/libfwnt_types.h +53 -0
- libesedb_python-20260704/libfwnt/libfwnt_unused.h +44 -0
- libesedb_python-20260704/libmapidb/Makefile.in +909 -0
- libesedb_python-20260704/libuna/Makefile.in +1318 -0
- libesedb_python-20260704/libuna/libuna_base16_stream.c +1511 -0
- libesedb_python-20260704/libuna/libuna_base16_stream.h +93 -0
- libesedb_python-20260704/libuna/libuna_base32_stream.c +3035 -0
- libesedb_python-20260704/libuna/libuna_base32_stream.h +131 -0
- libesedb_python-20260704/libuna/libuna_base64_stream.c +2832 -0
- libesedb_python-20260704/libuna/libuna_base64_stream.h +131 -0
- libesedb_python-20260704/libuna/libuna_byte_stream.c +633 -0
- libesedb_python-20260704/libuna/libuna_byte_stream.h +104 -0
- libesedb_python-20260704/libuna/libuna_codepage_iso_8859_10.c +73 -0
- libesedb_python-20260704/libuna/libuna_codepage_iso_8859_10.h +48 -0
- libesedb_python-20260704/libuna/libuna_codepage_iso_8859_13.c +82 -0
- libesedb_python-20260704/libuna/libuna_codepage_iso_8859_13.h +48 -0
- libesedb_python-20260704/libuna/libuna_codepage_iso_8859_14.c +66 -0
- libesedb_python-20260704/libuna/libuna_codepage_iso_8859_14.h +51 -0
- libesedb_python-20260704/libuna/libuna_codepage_iso_8859_15.c +46 -0
- libesedb_python-20260704/libuna/libuna_codepage_iso_8859_15.h +45 -0
- libesedb_python-20260704/libuna/libuna_codepage_iso_8859_16.c +78 -0
- libesedb_python-20260704/libuna/libuna_codepage_iso_8859_16.h +57 -0
- libesedb_python-20260704/libuna/libuna_codepage_iso_8859_2.c +82 -0
- libesedb_python-20260704/libuna/libuna_codepage_iso_8859_2.h +51 -0
- libesedb_python-20260704/libuna/libuna_codepage_iso_8859_3.c +79 -0
- libesedb_python-20260704/libuna/libuna_codepage_iso_8859_3.h +57 -0
- libesedb_python-20260704/libuna/libuna_codepage_iso_8859_4.c +80 -0
- libesedb_python-20260704/libuna/libuna_codepage_iso_8859_4.h +48 -0
- libesedb_python-20260704/libuna/libuna_codepage_iso_8859_5.c +62 -0
- libesedb_python-20260704/libuna/libuna_codepage_iso_8859_5.h +45 -0
- libesedb_python-20260704/libuna/libuna_codepage_iso_8859_6.c +58 -0
- libesedb_python-20260704/libuna/libuna_codepage_iso_8859_6.h +45 -0
- libesedb_python-20260704/libuna/libuna_codepage_iso_8859_7.c +66 -0
- libesedb_python-20260704/libuna/libuna_codepage_iso_8859_7.h +48 -0
- libesedb_python-20260704/libuna/libuna_codepage_iso_8859_8.c +61 -0
- libesedb_python-20260704/libuna/libuna_codepage_iso_8859_8.h +48 -0
- libesedb_python-20260704/libuna/libuna_codepage_iso_8859_9.c +50 -0
- libesedb_python-20260704/libuna/libuna_codepage_iso_8859_9.h +45 -0
- libesedb_python-20260704/libuna/libuna_codepage_koi8_r.c +392 -0
- libesedb_python-20260704/libuna/libuna_codepage_koi8_r.h +54 -0
- libesedb_python-20260704/libuna/libuna_codepage_koi8_u.c +424 -0
- libesedb_python-20260704/libuna/libuna_codepage_koi8_u.h +54 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_arabic.c +352 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_arabic.h +54 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_celtic.c +395 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_celtic.h +54 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_centraleurroman.c +319 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_centraleurroman.h +54 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_croatian.c +378 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_croatian.h +54 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_cyrillic.c +325 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_cyrillic.h +54 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_dingbats.c +347 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_dingbats.h +54 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_farsi.c +372 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_farsi.h +54 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_gaelic.c +437 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_gaelic.h +54 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_greek.c +305 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_greek.h +54 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_icelandic.c +381 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_icelandic.h +54 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_inuit.c +380 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_inuit.h +54 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_roman.c +387 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_roman.h +54 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_romanian.c +396 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_romanian.h +54 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_russian.c +317 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_russian.h +54 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_symbol.c +537 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_symbol.h +59 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_thai.c +330 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_thai.h +59 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_turkish.c +397 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_turkish.h +54 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_ukrainian.c +321 -0
- libesedb_python-20260704/libuna/libuna_codepage_mac_ukrainian.h +54 -0
- libesedb_python-20260704/libuna/libuna_codepage_windows_1250.c +313 -0
- libesedb_python-20260704/libuna/libuna_codepage_windows_1250.h +54 -0
- libesedb_python-20260704/libuna/libuna_codepage_windows_1251.c +301 -0
- libesedb_python-20260704/libuna/libuna_codepage_windows_1251.h +54 -0
- libesedb_python-20260704/libuna/libuna_codepage_windows_1252.c +287 -0
- libesedb_python-20260704/libuna/libuna_codepage_windows_1252.h +54 -0
- libesedb_python-20260704/libuna/libuna_codepage_windows_1253.c +291 -0
- libesedb_python-20260704/libuna/libuna_codepage_windows_1253.h +54 -0
- libesedb_python-20260704/libuna/libuna_codepage_windows_1254.c +348 -0
- libesedb_python-20260704/libuna/libuna_codepage_windows_1254.h +54 -0
- libesedb_python-20260704/libuna/libuna_codepage_windows_1255.c +328 -0
- libesedb_python-20260704/libuna/libuna_codepage_windows_1255.h +54 -0
- libesedb_python-20260704/libuna/libuna_codepage_windows_1256.c +372 -0
- libesedb_python-20260704/libuna/libuna_codepage_windows_1256.h +54 -0
- libesedb_python-20260704/libuna/libuna_codepage_windows_1257.c +303 -0
- libesedb_python-20260704/libuna/libuna_codepage_windows_1257.h +54 -0
- libesedb_python-20260704/libuna/libuna_codepage_windows_1258.c +349 -0
- libesedb_python-20260704/libuna/libuna_codepage_windows_1258.h +54 -0
- libesedb_python-20260704/libuna/libuna_codepage_windows_874.c +274 -0
- libesedb_python-20260704/libuna/libuna_codepage_windows_874.h +54 -0
- libesedb_python-20260704/libuna/libuna_codepage_windows_932.c +4913 -0
- libesedb_python-20260704/libuna/libuna_codepage_windows_932.h +59 -0
- libesedb_python-20260704/libuna/libuna_codepage_windows_936.c +7371 -0
- libesedb_python-20260704/libuna/libuna_codepage_windows_936.h +59 -0
- libesedb_python-20260704/libuna/libuna_codepage_windows_949.c +8163 -0
- libesedb_python-20260704/libuna/libuna_codepage_windows_949.h +59 -0
- libesedb_python-20260704/libuna/libuna_codepage_windows_950.c +6390 -0
- libesedb_python-20260704/libuna/libuna_codepage_windows_950.h +59 -0
- libesedb_python-20260704/libuna/libuna_definitions.h +436 -0
- libesedb_python-20260704/libuna/libuna_error.c +111 -0
- libesedb_python-20260704/libuna/libuna_error.h +74 -0
- libesedb_python-20260704/libuna/libuna_extern.h +53 -0
- libesedb_python-20260704/libuna/libuna_libcerror.h +50 -0
- libesedb_python-20260704/libuna/libuna_scsu.c +64 -0
- libesedb_python-20260704/libuna/libuna_scsu.h +45 -0
- libesedb_python-20260704/libuna/libuna_support.c +39 -0
- libesedb_python-20260704/libuna/libuna_support.h +49 -0
- libesedb_python-20260704/libuna/libuna_types.h +53 -0
- libesedb_python-20260704/libuna/libuna_unicode_character.c +5828 -0
- libesedb_python-20260704/libuna/libuna_unicode_character.h +260 -0
- libesedb_python-20260704/libuna/libuna_unused.h +44 -0
- libesedb_python-20260704/libuna/libuna_url_stream.c +584 -0
- libesedb_python-20260704/libuna/libuna_url_stream.h +71 -0
- libesedb_python-20260704/libuna/libuna_utf16_stream.c +815 -0
- libesedb_python-20260704/libuna/libuna_utf16_stream.h +109 -0
- libesedb_python-20260704/libuna/libuna_utf16_string.c +3950 -0
- libesedb_python-20260704/libuna/libuna_utf16_string.h +325 -0
- libesedb_python-20260704/libuna/libuna_utf32_stream.c +819 -0
- libesedb_python-20260704/libuna/libuna_utf32_stream.h +109 -0
- libesedb_python-20260704/libuna/libuna_utf32_string.c +3808 -0
- libesedb_python-20260704/libuna/libuna_utf32_string.h +321 -0
- libesedb_python-20260704/libuna/libuna_utf7_stream.c +628 -0
- libesedb_python-20260704/libuna/libuna_utf7_stream.h +98 -0
- libesedb_python-20260704/libuna/libuna_utf8_stream.c +748 -0
- libesedb_python-20260704/libuna/libuna_utf8_stream.h +105 -0
- libesedb_python-20260704/libuna/libuna_utf8_string.c +4092 -0
- libesedb_python-20260704/libuna/libuna_utf8_string.h +329 -0
- libesedb_python-20260704/ltmain.sh +11436 -0
- libesedb_python-20260704/m4/common.m4 +656 -0
- libesedb_python-20260704/m4/libbfio.m4 +215 -0
- libesedb_python-20260704/m4/libcdata.m4 +227 -0
- libesedb_python-20260704/m4/libcerror.m4 +186 -0
- libesedb_python-20260704/m4/libcfile.m4 +307 -0
- libesedb_python-20260704/m4/libclocale.m4 +242 -0
- libesedb_python-20260704/m4/libcnotify.m4 +160 -0
- libesedb_python-20260704/m4/libcpath.m4 +274 -0
- libesedb_python-20260704/m4/libcsplit.m4 +183 -0
- libesedb_python-20260704/m4/libcthreads.m4 +214 -0
- libesedb_python-20260704/m4/libfcache.m4 +173 -0
- libesedb_python-20260704/m4/libfdata.m4 +241 -0
- libesedb_python-20260704/m4/libfdatetime.m4 +219 -0
- libesedb_python-20260704/m4/libfguid.m4 +153 -0
- libesedb_python-20260704/m4/libfmapi.m4 +192 -0
- libesedb_python-20260704/m4/libfvalue.m4 +240 -0
- libesedb_python-20260704/m4/libfwnt.m4 +172 -0
- libesedb_python-20260704/m4/libmapidb.m4 +141 -0
- libesedb_python-20260704/m4/libtool.m4 +8427 -0
- libesedb_python-20260704/m4/libuna.m4 +311 -0
- {libesedb-20240420 → libesedb_python-20260704}/m4/ltoptions.m4 +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/m4/ltsugar.m4 +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/m4/ltversion.m4 +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/m4/lt~obsolete.m4 +0 -0
- libesedb_python-20260704/m4/pthread.m4 +126 -0
- libesedb_python-20260704/m4/python.m4 +222 -0
- libesedb_python-20260704/m4/tests.m4 +319 -0
- libesedb_python-20260704/m4/types.m4 +133 -0
- libesedb_python-20260704/m4/yaltools.m4 +99 -0
- libesedb_python-20260704/manuals/Makefile.am +12 -0
- libesedb_python-20260704/manuals/Makefile.in +842 -0
- libesedb_python-20260704/manuals/esedbexport.1 +98 -0
- libesedb_python-20260704/manuals/esedbinfo.1 +102 -0
- libesedb_python-20260704/manuals/libesedb.3 +1087 -0
- libesedb_python-20260704/msvscpp/Makefile.in +776 -0
- libesedb_python-20260704/ossfuzz/Makefile.in +1071 -0
- libesedb_python-20260704/ossfuzz/column_fuzzer.cc +146 -0
- libesedb_python-20260704/ossfuzz/file_fuzzer.cc +99 -0
- libesedb_python-20260704/ossfuzz/ossfuzz_libbfio.h +58 -0
- libesedb_python-20260704/ossfuzz/ossfuzz_libesedb.h +30 -0
- libesedb_python-20260704/ossfuzz/record_fuzzer.cc +144 -0
- libesedb_python-20260704/ossfuzz/table_fuzzer.cc +121 -0
- libesedb_python-20260704/po/Makevars +45 -0
- libesedb_python-20260704/pyesedb/Makefile.am +63 -0
- libesedb_python-20260704/pyesedb/Makefile.in +1214 -0
- libesedb_python-20260704/pyesedb/pyesedb.c +891 -0
- libesedb_python-20260704/pyesedb/pyesedb.h +71 -0
- libesedb_python-20260704/pyesedb/pyesedb_column.c +559 -0
- libesedb_python-20260704/pyesedb/pyesedb_column.h +82 -0
- libesedb_python-20260704/pyesedb/pyesedb_column_types.c +516 -0
- libesedb_python-20260704/pyesedb/pyesedb_column_types.h +63 -0
- libesedb_python-20260704/pyesedb/pyesedb_columns.c +452 -0
- libesedb_python-20260704/pyesedb/pyesedb_columns.h +95 -0
- libesedb_python-20260704/pyesedb/pyesedb_datetime.c +691 -0
- libesedb_python-20260704/pyesedb/pyesedb_datetime.h +65 -0
- libesedb_python-20260704/pyesedb/pyesedb_error.c +422 -0
- libesedb_python-20260704/pyesedb/pyesedb_error.h +60 -0
- libesedb_python-20260704/pyesedb/pyesedb_file.c +1399 -0
- libesedb_python-20260704/pyesedb/pyesedb_file.h +136 -0
- libesedb_python-20260704/pyesedb/pyesedb_file_object_io_handle.c +1524 -0
- libesedb_python-20260704/pyesedb/pyesedb_file_object_io_handle.h +141 -0
- libesedb_python-20260704/pyesedb/pyesedb_file_types.c +292 -0
- libesedb_python-20260704/pyesedb/pyesedb_file_types.h +63 -0
- libesedb_python-20260704/pyesedb/pyesedb_index.c +741 -0
- libesedb_python-20260704/pyesedb/pyesedb_index.h +95 -0
- libesedb_python-20260704/pyesedb/pyesedb_indexes.c +452 -0
- libesedb_python-20260704/pyesedb/pyesedb_indexes.h +95 -0
- libesedb_python-20260704/pyesedb/pyesedb_integer.c +399 -0
- libesedb_python-20260704/pyesedb/pyesedb_integer.h +56 -0
- libesedb_python-20260704/pyesedb/pyesedb_libbfio.h +54 -0
- libesedb_python-20260704/pyesedb/pyesedb_libcerror.h +50 -0
- libesedb_python-20260704/pyesedb/pyesedb_libclocale.h +50 -0
- libesedb_python-20260704/pyesedb/pyesedb_libesedb.h +30 -0
- libesedb_python-20260704/pyesedb/pyesedb_long_value.c +549 -0
- libesedb_python-20260704/pyesedb/pyesedb_long_value.h +78 -0
- libesedb_python-20260704/pyesedb/pyesedb_multi_value.c +1004 -0
- libesedb_python-20260704/pyesedb/pyesedb_multi_value.h +94 -0
- libesedb_python-20260704/pyesedb/pyesedb_python.h +83 -0
- libesedb_python-20260704/pyesedb/pyesedb_record.c +1669 -0
- libesedb_python-20260704/pyesedb/pyesedb_record.h +129 -0
- libesedb_python-20260704/pyesedb/pyesedb_records.c +452 -0
- libesedb_python-20260704/pyesedb/pyesedb_records.h +95 -0
- libesedb_python-20260704/pyesedb/pyesedb_table.c +1115 -0
- libesedb_python-20260704/pyesedb/pyesedb_table.h +116 -0
- libesedb_python-20260704/pyesedb/pyesedb_tables.c +452 -0
- libesedb_python-20260704/pyesedb/pyesedb_tables.h +95 -0
- libesedb_python-20260704/pyesedb/pyesedb_unused.h +44 -0
- libesedb_python-20260704/pyesedb/pyesedb_value_flags.c +320 -0
- libesedb_python-20260704/pyesedb/pyesedb_value_flags.h +63 -0
- libesedb_python-20260704/pyproject.toml +35 -0
- libesedb_python-20260704/pyproject.toml.in +35 -0
- libesedb_python-20260704/tests/Makefile.am +706 -0
- libesedb_python-20260704/tests/Makefile.in +2133 -0
- libesedb_python-20260704/tests/atlocal.in +29 -0
- libesedb_python-20260704/tests/esedb_test_block_descriptor.c +311 -0
- libesedb_python-20260704/tests/esedb_test_block_tree.c +752 -0
- libesedb_python-20260704/tests/esedb_test_block_tree_node.c +331 -0
- libesedb_python-20260704/tests/esedb_test_catalog.c +1281 -0
- libesedb_python-20260704/tests/esedb_test_catalog_definition.c +1781 -0
- libesedb_python-20260704/tests/esedb_test_checksum.c +1382 -0
- libesedb_python-20260704/tests/esedb_test_column.c +1236 -0
- libesedb_python-20260704/tests/esedb_test_column_type.c +132 -0
- libesedb_python-20260704/tests/esedb_test_compression.c +1458 -0
- libesedb_python-20260704/tests/esedb_test_data_definition.c +503 -0
- libesedb_python-20260704/tests/esedb_test_data_segment.c +998 -0
- libesedb_python-20260704/tests/esedb_test_database.c +417 -0
- libesedb_python-20260704/tests/esedb_test_error.c +150 -0
- libesedb_python-20260704/tests/esedb_test_file.c +1718 -0
- libesedb_python-20260704/tests/esedb_test_file_header.c +880 -0
- libesedb_python-20260704/tests/esedb_test_functions.c +562 -0
- libesedb_python-20260704/tests/esedb_test_functions.h +66 -0
- libesedb_python-20260704/tests/esedb_test_getopt.c +190 -0
- libesedb_python-20260704/tests/esedb_test_getopt.h +68 -0
- libesedb_python-20260704/tests/esedb_test_index.c +128 -0
- libesedb_python-20260704/tests/esedb_test_io_handle.c +443 -0
- libesedb_python-20260704/tests/esedb_test_leaf_page_descriptor.c +470 -0
- libesedb_python-20260704/tests/esedb_test_libbfio.h +58 -0
- libesedb_python-20260704/tests/esedb_test_libcdata.h +54 -0
- libesedb_python-20260704/tests/esedb_test_libcerror.h +50 -0
- libesedb_python-20260704/tests/esedb_test_libclocale.h +50 -0
- libesedb_python-20260704/tests/esedb_test_libcnotify.h +50 -0
- libesedb_python-20260704/tests/esedb_test_libesedb.h +30 -0
- libesedb_python-20260704/tests/esedb_test_libfcache.h +50 -0
- libesedb_python-20260704/tests/esedb_test_libfdata.h +54 -0
- libesedb_python-20260704/tests/esedb_test_libuna.h +60 -0
- libesedb_python-20260704/tests/esedb_test_long_value.c +134 -0
- libesedb_python-20260704/tests/esedb_test_macros.h +257 -0
- libesedb_python-20260704/tests/esedb_test_memory.c +199 -0
- libesedb_python-20260704/tests/esedb_test_memory.h +66 -0
- libesedb_python-20260704/tests/esedb_test_multi_value.c +150 -0
- libesedb_python-20260704/tests/esedb_test_notify.c +229 -0
- libesedb_python-20260704/tests/esedb_test_page.c +2247 -0
- libesedb_python-20260704/tests/esedb_test_page_header.c +960 -0
- libesedb_python-20260704/tests/esedb_test_page_tree.c +474 -0
- libesedb_python-20260704/tests/esedb_test_page_tree_key.c +812 -0
- libesedb_python-20260704/tests/esedb_test_page_tree_value.c +475 -0
- libesedb_python-20260704/tests/esedb_test_page_value.c +307 -0
- libesedb_python-20260704/tests/esedb_test_record.c +176 -0
- libesedb_python-20260704/tests/esedb_test_root_page_header.c +470 -0
- libesedb_python-20260704/tests/esedb_test_space_tree.c +116 -0
- libesedb_python-20260704/tests/esedb_test_space_tree_value.c +470 -0
- libesedb_python-20260704/tests/esedb_test_support.c +796 -0
- libesedb_python-20260704/tests/esedb_test_table.c +144 -0
- libesedb_python-20260704/tests/esedb_test_table_definition.c +393 -0
- libesedb_python-20260704/tests/esedb_test_tools_info_handle.c +299 -0
- libesedb_python-20260704/tests/esedb_test_tools_output.c +105 -0
- libesedb_python-20260704/tests/esedb_test_tools_signal.c +213 -0
- libesedb_python-20260704/tests/esedb_test_tools_windows_search_compression.c +488 -0
- libesedb_python-20260704/tests/esedb_test_unused.h +50 -0
- libesedb_python-20260704/tests/generate_test_inputs.sh +301 -0
- libesedb_python-20260704/tests/package.m4 +5 -0
- libesedb_python-20260704/tests/pyesedb_test_file.py +193 -0
- libesedb_python-20260704/tests/pyesedb_test_support.py +108 -0
- libesedb_python-20260704/tests/test_library.at +41 -0
- libesedb_python-20260704/tests/test_macros.at +188 -0
- libesedb_python-20260704/tests/test_manpages.at +73 -0
- libesedb_python-20260704/tests/test_python_module.at +145 -0
- libesedb_python-20260704/tests/test_tools.at +256 -0
- libesedb-20240420/AUTHORS +0 -4
- libesedb-20240420/Makefile.am +0 -111
- libesedb-20240420/Makefile.in +0 -1243
- libesedb-20240420/PKG-INFO +0 -13
- libesedb-20240420/README +0 -27
- libesedb-20240420/acinclude.m4 +0 -60
- libesedb-20240420/aclocal.m4 +0 -1550
- libesedb-20240420/common/Makefile.in +0 -803
- libesedb-20240420/common/byte_stream.h +0 -257
- libesedb-20240420/common/common.h +0 -43
- libesedb-20240420/common/config.h +0 -626
- libesedb-20240420/common/config.h.in +0 -625
- libesedb-20240420/common/config_borlandc.h +0 -26
- libesedb-20240420/common/config_msc.h +0 -34
- libesedb-20240420/common/config_winapi.h +0 -95
- libesedb-20240420/common/file_stream.h +0 -151
- libesedb-20240420/common/memory.h +0 -129
- libesedb-20240420/common/narrow_string.h +0 -187
- libesedb-20240420/common/system_string.h +0 -154
- libesedb-20240420/common/types.h +0 -392
- libesedb-20240420/common/types.h.in +0 -392
- libesedb-20240420/common/wide_string.h +0 -175
- libesedb-20240420/config.guess +0 -1774
- libesedb-20240420/config.sub +0 -1907
- libesedb-20240420/configure +0 -65590
- libesedb-20240420/configure.ac +0 -260
- libesedb-20240420/dpkg/changelog +0 -5
- libesedb-20240420/dpkg/compat +0 -1
- libesedb-20240420/dpkg/control +0 -65
- libesedb-20240420/dpkg/copyright +0 -25
- libesedb-20240420/dpkg/rules +0 -31
- libesedb-20240420/esedbtools/Makefile.am +0 -112
- libesedb-20240420/esedbtools/Makefile.in +0 -1072
- libesedb-20240420/esedbtools/database_types.c +0 -203
- libesedb-20240420/esedbtools/database_types.h +0 -76
- libesedb-20240420/esedbtools/esedbexport.c +0 -555
- libesedb-20240420/esedbtools/esedbinfo.c +0 -286
- libesedb-20240420/esedbtools/esedbtools_getopt.c +0 -190
- libesedb-20240420/esedbtools/esedbtools_getopt.h +0 -68
- libesedb-20240420/esedbtools/esedbtools_i18n.h +0 -48
- libesedb-20240420/esedbtools/esedbtools_libbfio.h +0 -58
- libesedb-20240420/esedbtools/esedbtools_libcdata.h +0 -54
- libesedb-20240420/esedbtools/esedbtools_libcerror.h +0 -50
- libesedb-20240420/esedbtools/esedbtools_libcfile.h +0 -50
- libesedb-20240420/esedbtools/esedbtools_libclocale.h +0 -50
- libesedb-20240420/esedbtools/esedbtools_libcnotify.h +0 -50
- libesedb-20240420/esedbtools/esedbtools_libcpath.h +0 -48
- libesedb-20240420/esedbtools/esedbtools_libesedb.h +0 -30
- libesedb-20240420/esedbtools/esedbtools_libfdatetime.h +0 -56
- libesedb-20240420/esedbtools/esedbtools_libfguid.h +0 -49
- libesedb-20240420/esedbtools/esedbtools_libfmapi.h +0 -60
- libesedb-20240420/esedbtools/esedbtools_libfvalue.h +0 -59
- libesedb-20240420/esedbtools/esedbtools_libfwnt.h +0 -58
- libesedb-20240420/esedbtools/esedbtools_libuna.h +0 -60
- libesedb-20240420/esedbtools/esedbtools_output.c +0 -210
- libesedb-20240420/esedbtools/esedbtools_output.h +0 -55
- libesedb-20240420/esedbtools/esedbtools_signal.c +0 -262
- libesedb-20240420/esedbtools/esedbtools_signal.h +0 -72
- libesedb-20240420/esedbtools/esedbtools_system_string.c +0 -121
- libesedb-20240420/esedbtools/esedbtools_system_string.h +0 -46
- libesedb-20240420/esedbtools/esedbtools_unused.h +0 -50
- libesedb-20240420/esedbtools/export.c +0 -820
- libesedb-20240420/esedbtools/export.h +0 -75
- libesedb-20240420/esedbtools/export_handle.c +0 -4559
- libesedb-20240420/esedbtools/export_handle.h +0 -233
- libesedb-20240420/esedbtools/info_handle.c +0 -1450
- libesedb-20240420/esedbtools/info_handle.h +0 -113
- libesedb-20240420/esedbtools/log_handle.c +0 -276
- libesedb-20240420/esedbtools/log_handle.h +0 -71
- libesedb-20240420/esedbtools/srumdb.c +0 -273
- libesedb-20240420/esedbtools/srumdb.h +0 -48
- libesedb-20240420/esedbtools/webcache.c +0 -515
- libesedb-20240420/esedbtools/webcache.h +0 -54
- libesedb-20240420/esedbtools/windows_search.c +0 -3168
- libesedb-20240420/esedbtools/windows_search.h +0 -106
- libesedb-20240420/esedbtools/windows_search_compression.c +0 -284
- libesedb-20240420/esedbtools/windows_search_compression.h +0 -53
- libesedb-20240420/esedbtools/windows_security.c +0 -995
- libesedb-20240420/esedbtools/windows_security.h +0 -68
- libesedb-20240420/include/Makefile.in +0 -865
- libesedb-20240420/include/libesedb/codepage.h +0 -122
- libesedb-20240420/include/libesedb/definitions.h +0 -103
- libesedb-20240420/include/libesedb/definitions.h.in +0 -103
- libesedb-20240420/include/libesedb/error.h +0 -291
- libesedb-20240420/include/libesedb/extern.h +0 -44
- libesedb-20240420/include/libesedb/features.h +0 -50
- libesedb-20240420/include/libesedb/features.h.in +0 -50
- libesedb-20240420/include/libesedb/types.h +0 -217
- libesedb-20240420/include/libesedb/types.h.in +0 -217
- libesedb-20240420/include/libesedb.h +0 -1311
- libesedb-20240420/include/libesedb.h.in +0 -1311
- libesedb-20240420/libbfio/Makefile.in +0 -966
- libesedb-20240420/libbfio/libbfio_codepage.h +0 -90
- libesedb-20240420/libbfio/libbfio_definitions.h +0 -89
- libesedb-20240420/libbfio/libbfio_error.c +0 -111
- libesedb-20240420/libbfio/libbfio_error.h +0 -74
- libesedb-20240420/libbfio/libbfio_extern.h +0 -46
- libesedb-20240420/libbfio/libbfio_file.c +0 -444
- libesedb-20240420/libbfio/libbfio_file.h +0 -90
- libesedb-20240420/libbfio/libbfio_file_io_handle.c +0 -1198
- libesedb-20240420/libbfio/libbfio_file_io_handle.h +0 -152
- libesedb-20240420/libbfio/libbfio_file_pool.c +0 -494
- libesedb-20240420/libbfio/libbfio_file_pool.h +0 -81
- libesedb-20240420/libbfio/libbfio_file_range.c +0 -468
- libesedb-20240420/libbfio/libbfio_file_range.h +0 -104
- libesedb-20240420/libbfio/libbfio_file_range_io_handle.c +0 -1158
- libesedb-20240420/libbfio/libbfio_file_range_io_handle.h +0 -160
- libesedb-20240420/libbfio/libbfio_handle.c +0 -2708
- libesedb-20240420/libbfio/libbfio_handle.h +0 -363
- libesedb-20240420/libbfio/libbfio_libcdata.h +0 -54
- libesedb-20240420/libbfio/libbfio_libcerror.h +0 -50
- libesedb-20240420/libbfio/libbfio_libcfile.h +0 -50
- libesedb-20240420/libbfio/libbfio_libclocale.h +0 -50
- libesedb-20240420/libbfio/libbfio_libcpath.h +0 -48
- libesedb-20240420/libbfio/libbfio_libcthreads.h +0 -64
- libesedb-20240420/libbfio/libbfio_libuna.h +0 -60
- libesedb-20240420/libbfio/libbfio_memory_range.c +0 -205
- libesedb-20240420/libbfio/libbfio_memory_range.h +0 -60
- libesedb-20240420/libbfio/libbfio_memory_range_io_handle.c +0 -871
- libesedb-20240420/libbfio/libbfio_memory_range_io_handle.h +0 -129
- libesedb-20240420/libbfio/libbfio_pool.c +0 -3521
- libesedb-20240420/libbfio/libbfio_pool.h +0 -275
- libesedb-20240420/libbfio/libbfio_support.c +0 -93
- libesedb-20240420/libbfio/libbfio_support.h +0 -58
- libesedb-20240420/libbfio/libbfio_system_string.c +0 -1017
- libesedb-20240420/libbfio/libbfio_system_string.h +0 -95
- libesedb-20240420/libbfio/libbfio_types.h +0 -49
- libesedb-20240420/libbfio/libbfio_unused.h +0 -44
- libesedb-20240420/libcdata/Makefile.in +0 -945
- libesedb-20240420/libcdata/libcdata_array.c +0 -2015
- libesedb-20240420/libcdata/libcdata_array.h +0 -200
- libesedb-20240420/libcdata/libcdata_btree.c +0 -964
- libesedb-20240420/libcdata/libcdata_btree.h +0 -141
- libesedb-20240420/libcdata/libcdata_btree_node.c +0 -1607
- libesedb-20240420/libcdata/libcdata_btree_node.h +0 -101
- libesedb-20240420/libcdata/libcdata_btree_values_list.c +0 -217
- libesedb-20240420/libcdata/libcdata_btree_values_list.h +0 -55
- libesedb-20240420/libcdata/libcdata_definitions.h +0 -81
- libesedb-20240420/libcdata/libcdata_error.c +0 -111
- libesedb-20240420/libcdata/libcdata_error.h +0 -74
- libesedb-20240420/libcdata/libcdata_extern.h +0 -46
- libesedb-20240420/libcdata/libcdata_libcerror.h +0 -50
- libesedb-20240420/libcdata/libcdata_libcthreads.h +0 -64
- libesedb-20240420/libcdata/libcdata_list.c +0 -2906
- libesedb-20240420/libcdata/libcdata_list.h +0 -235
- libesedb-20240420/libcdata/libcdata_list_element.c +0 -926
- libesedb-20240420/libcdata/libcdata_list_element.h +0 -142
- libesedb-20240420/libcdata/libcdata_range_list.c +0 -4922
- libesedb-20240420/libcdata/libcdata_range_list.h +0 -382
- libesedb-20240420/libcdata/libcdata_range_list_value.c +0 -429
- libesedb-20240420/libcdata/libcdata_range_list_value.h +0 -100
- libesedb-20240420/libcdata/libcdata_support.c +0 -39
- libesedb-20240420/libcdata/libcdata_support.h +0 -47
- libesedb-20240420/libcdata/libcdata_tree_node.c +0 -4216
- libesedb-20240420/libcdata/libcdata_tree_node.h +0 -301
- libesedb-20240420/libcdata/libcdata_types.h +0 -57
- libesedb-20240420/libcdata/libcdata_unused.h +0 -44
- libesedb-20240420/libcerror/Makefile.in +0 -887
- libesedb-20240420/libcerror/libcerror_definitions.h +0 -326
- libesedb-20240420/libcerror/libcerror_error.c +0 -827
- libesedb-20240420/libcerror/libcerror_error.h +0 -125
- libesedb-20240420/libcerror/libcerror_extern.h +0 -46
- libesedb-20240420/libcerror/libcerror_support.c +0 -39
- libesedb-20240420/libcerror/libcerror_support.h +0 -47
- libesedb-20240420/libcerror/libcerror_system.c +0 -587
- libesedb-20240420/libcerror/libcerror_system.h +0 -78
- libesedb-20240420/libcerror/libcerror_types.h +0 -51
- libesedb-20240420/libcerror/libcerror_unused.h +0 -44
- libesedb-20240420/libcfile/Makefile.in +0 -914
- libesedb-20240420/libcfile/libcfile_definitions.h +0 -101
- libesedb-20240420/libcfile/libcfile_error.c +0 -111
- libesedb-20240420/libcfile/libcfile_error.h +0 -74
- libesedb-20240420/libcfile/libcfile_extern.h +0 -46
- libesedb-20240420/libcfile/libcfile_file.c +0 -4570
- libesedb-20240420/libcfile/libcfile_file.h +0 -273
- libesedb-20240420/libcfile/libcfile_libcerror.h +0 -50
- libesedb-20240420/libcfile/libcfile_libclocale.h +0 -50
- libesedb-20240420/libcfile/libcfile_libcnotify.h +0 -50
- libesedb-20240420/libcfile/libcfile_libuna.h +0 -60
- libesedb-20240420/libcfile/libcfile_notify.c +0 -120
- libesedb-20240420/libcfile/libcfile_notify.h +0 -63
- libesedb-20240420/libcfile/libcfile_support.c +0 -1171
- libesedb-20240420/libcfile/libcfile_support.h +0 -98
- libesedb-20240420/libcfile/libcfile_system_string.c +0 -1017
- libesedb-20240420/libcfile/libcfile_system_string.h +0 -95
- libesedb-20240420/libcfile/libcfile_types.h +0 -47
- libesedb-20240420/libcfile/libcfile_unused.h +0 -44
- libesedb-20240420/libcfile/libcfile_winapi.c +0 -815
- libesedb-20240420/libcfile/libcfile_winapi.h +0 -122
- libesedb-20240420/libclocale/Makefile.in +0 -897
- libesedb-20240420/libclocale/libclocale_codepage.c +0 -920
- libesedb-20240420/libclocale/libclocale_codepage.h +0 -77
- libesedb-20240420/libclocale/libclocale_definitions.h +0 -106
- libesedb-20240420/libclocale/libclocale_extern.h +0 -46
- libesedb-20240420/libclocale/libclocale_libcerror.h +0 -50
- libesedb-20240420/libclocale/libclocale_locale.c +0 -494
- libesedb-20240420/libclocale/libclocale_locale.h +0 -66
- libesedb-20240420/libclocale/libclocale_support.c +0 -130
- libesedb-20240420/libclocale/libclocale_support.h +0 -55
- libesedb-20240420/libclocale/libclocale_unused.h +0 -44
- libesedb-20240420/libclocale/libclocale_wide_string.c +0 -69
- libesedb-20240420/libclocale/libclocale_wide_string.h +0 -54
- libesedb-20240420/libcnotify/Makefile.in +0 -895
- libesedb-20240420/libcnotify/libcnotify_definitions.h +0 -54
- libesedb-20240420/libcnotify/libcnotify_extern.h +0 -46
- libesedb-20240420/libcnotify/libcnotify_libcerror.h +0 -50
- libesedb-20240420/libcnotify/libcnotify_print.c +0 -400
- libesedb-20240420/libcnotify/libcnotify_print.h +0 -68
- libesedb-20240420/libcnotify/libcnotify_stream.c +0 -182
- libesedb-20240420/libcnotify/libcnotify_stream.h +0 -56
- libesedb-20240420/libcnotify/libcnotify_support.c +0 -39
- libesedb-20240420/libcnotify/libcnotify_support.h +0 -49
- libesedb-20240420/libcnotify/libcnotify_unused.h +0 -44
- libesedb-20240420/libcnotify/libcnotify_verbose.c +0 -38
- libesedb-20240420/libcnotify/libcnotify_verbose.h +0 -50
- libesedb-20240420/libcpath/Makefile.in +0 -899
- libesedb-20240420/libcpath/libcpath_definitions.h +0 -83
- libesedb-20240420/libcpath/libcpath_error.c +0 -111
- libesedb-20240420/libcpath/libcpath_error.h +0 -74
- libesedb-20240420/libcpath/libcpath_extern.h +0 -46
- libesedb-20240420/libcpath/libcpath_libcerror.h +0 -50
- libesedb-20240420/libcpath/libcpath_libclocale.h +0 -50
- libesedb-20240420/libcpath/libcpath_libcsplit.h +0 -52
- libesedb-20240420/libcpath/libcpath_libuna.h +0 -60
- libesedb-20240420/libcpath/libcpath_path.c +0 -7174
- libesedb-20240420/libcpath/libcpath_path.h +0 -273
- libesedb-20240420/libcpath/libcpath_support.c +0 -93
- libesedb-20240420/libcpath/libcpath_support.h +0 -58
- libesedb-20240420/libcpath/libcpath_system_string.c +0 -1017
- libesedb-20240420/libcpath/libcpath_system_string.h +0 -95
- libesedb-20240420/libcpath/libcpath_unused.h +0 -44
- libesedb-20240420/libcsplit/Makefile.in +0 -912
- libesedb-20240420/libcsplit/libcsplit_definitions.h +0 -47
- libesedb-20240420/libcsplit/libcsplit_error.c +0 -111
- libesedb-20240420/libcsplit/libcsplit_error.h +0 -74
- libesedb-20240420/libcsplit/libcsplit_extern.h +0 -46
- libesedb-20240420/libcsplit/libcsplit_libcerror.h +0 -50
- libesedb-20240420/libcsplit/libcsplit_narrow_split_string.c +0 -547
- libesedb-20240420/libcsplit/libcsplit_narrow_split_string.h +0 -107
- libesedb-20240420/libcsplit/libcsplit_narrow_string.c +0 -288
- libesedb-20240420/libcsplit/libcsplit_narrow_string.h +0 -49
- libesedb-20240420/libcsplit/libcsplit_support.c +0 -39
- libesedb-20240420/libcsplit/libcsplit_support.h +0 -47
- libesedb-20240420/libcsplit/libcsplit_types.h +0 -49
- libesedb-20240420/libcsplit/libcsplit_unused.h +0 -44
- libesedb-20240420/libcsplit/libcsplit_wide_split_string.c +0 -551
- libesedb-20240420/libcsplit/libcsplit_wide_split_string.h +0 -111
- libesedb-20240420/libcsplit/libcsplit_wide_string.c +0 -292
- libesedb-20240420/libcsplit/libcsplit_wide_string.h +0 -53
- libesedb-20240420/libcthreads/Makefile.in +0 -947
- libesedb-20240420/libcthreads/libcthreads_condition.c +0 -735
- libesedb-20240420/libcthreads/libcthreads_condition.h +0 -120
- libesedb-20240420/libcthreads/libcthreads_definitions.h +0 -84
- libesedb-20240420/libcthreads/libcthreads_error.c +0 -111
- libesedb-20240420/libcthreads/libcthreads_error.h +0 -74
- libesedb-20240420/libcthreads/libcthreads_extern.h +0 -46
- libesedb-20240420/libcthreads/libcthreads_libcerror.h +0 -50
- libesedb-20240420/libcthreads/libcthreads_lock.c +0 -391
- libesedb-20240420/libcthreads/libcthreads_lock.h +0 -88
- libesedb-20240420/libcthreads/libcthreads_mutex.c +0 -601
- libesedb-20240420/libcthreads/libcthreads_mutex.h +0 -98
- libesedb-20240420/libcthreads/libcthreads_queue.c +0 -1150
- libesedb-20240420/libcthreads/libcthreads_queue.h +0 -136
- libesedb-20240420/libcthreads/libcthreads_read_write_lock.c +0 -690
- libesedb-20240420/libcthreads/libcthreads_read_write_lock.h +0 -119
- libesedb-20240420/libcthreads/libcthreads_repeating_thread.c +0 -644
- libesedb-20240420/libcthreads/libcthreads_repeating_thread.h +0 -115
- libesedb-20240420/libcthreads/libcthreads_support.c +0 -39
- libesedb-20240420/libcthreads/libcthreads_support.h +0 -47
- libesedb-20240420/libcthreads/libcthreads_thread.c +0 -405
- libesedb-20240420/libcthreads/libcthreads_thread.h +0 -95
- libesedb-20240420/libcthreads/libcthreads_thread_attributes.c +0 -149
- libesedb-20240420/libcthreads/libcthreads_thread_attributes.h +0 -78
- libesedb-20240420/libcthreads/libcthreads_thread_pool.c +0 -1721
- libesedb-20240420/libcthreads/libcthreads_thread_pool.h +0 -177
- libesedb-20240420/libcthreads/libcthreads_types.h +0 -63
- libesedb-20240420/libcthreads/libcthreads_unused.h +0 -44
- libesedb-20240420/libesedb/Makefile.in +0 -1203
- libesedb-20240420/libesedb/esedb_file_header.h +0 -352
- libesedb-20240420/libesedb/esedb_page.h +0 -146
- libesedb-20240420/libesedb/esedb_page_values.h +0 -273
- libesedb-20240420/libesedb/libesedb.c +0 -80
- libesedb-20240420/libesedb/libesedb.rc +0 -38
- libesedb-20240420/libesedb/libesedb.rc.in +0 -38
- libesedb-20240420/libesedb/libesedb_block_descriptor.c +0 -131
- libesedb-20240420/libesedb/libesedb_block_descriptor.h +0 -56
- libesedb-20240420/libesedb/libesedb_block_tree.c +0 -474
- libesedb-20240420/libesedb/libesedb_block_tree.h +0 -83
- libesedb-20240420/libesedb/libesedb_block_tree_node.c +0 -613
- libesedb-20240420/libesedb/libesedb_block_tree_node.h +0 -109
- libesedb-20240420/libesedb/libesedb_catalog.c +0 -1385
- libesedb-20240420/libesedb/libesedb_catalog.h +0 -126
- libesedb-20240420/libesedb/libesedb_catalog_definition.c +0 -1893
- libesedb-20240420/libesedb/libesedb_catalog_definition.h +0 -204
- libesedb-20240420/libesedb/libesedb_checksum.c +0 -584
- libesedb-20240420/libesedb/libesedb_checksum.h +0 -55
- libesedb-20240420/libesedb/libesedb_codepage.c +0 -108
- libesedb-20240420/libesedb/libesedb_codepage.h +0 -116
- libesedb-20240420/libesedb/libesedb_column.c +0 -471
- libesedb-20240420/libesedb/libesedb_column.h +0 -105
- libesedb-20240420/libesedb/libesedb_column_type.c +0 -91
- libesedb-20240420/libesedb/libesedb_column_type.h +0 -64
- libesedb-20240420/libesedb/libesedb_compression.c +0 -1328
- libesedb-20240420/libesedb/libesedb_compression.h +0 -104
- libesedb-20240420/libesedb/libesedb_data_definition.c +0 -1957
- libesedb-20240420/libesedb/libesedb_data_definition.h +0 -117
- libesedb-20240420/libesedb/libesedb_data_segment.c +0 -394
- libesedb-20240420/libesedb/libesedb_data_segment.h +0 -86
- libesedb-20240420/libesedb/libesedb_database.c +0 -605
- libesedb-20240420/libesedb/libesedb_database.h +0 -80
- libesedb-20240420/libesedb/libesedb_debug.c +0 -772
- libesedb-20240420/libesedb/libesedb_debug.h +0 -85
- libesedb-20240420/libesedb/libesedb_definitions.h +0 -258
- libesedb-20240420/libesedb/libesedb_definitions.h.in +0 -258
- libesedb-20240420/libesedb/libesedb_error.c +0 -111
- libesedb-20240420/libesedb/libesedb_error.h +0 -74
- libesedb-20240420/libesedb/libesedb_extern.h +0 -46
- libesedb-20240420/libesedb/libesedb_file.c +0 -2116
- libesedb-20240420/libesedb/libesedb_file.h +0 -192
- libesedb-20240420/libesedb/libesedb_file_header.c +0 -785
- libesedb-20240420/libesedb/libesedb_file_header.h +0 -93
- libesedb-20240420/libesedb/libesedb_i18n.c +0 -63
- libesedb-20240420/libesedb/libesedb_i18n.h +0 -55
- libesedb-20240420/libesedb/libesedb_index.c +0 -744
- libesedb-20240420/libesedb/libesedb_index.h +0 -166
- libesedb-20240420/libesedb/libesedb_io_handle.c +0 -310
- libesedb-20240420/libesedb/libesedb_io_handle.h +0 -126
- libesedb-20240420/libesedb/libesedb_lcid.c +0 -474
- libesedb-20240420/libesedb/libesedb_lcid.h +0 -64
- libesedb-20240420/libesedb/libesedb_leaf_page_descriptor.c +0 -177
- libesedb-20240420/libesedb/libesedb_leaf_page_descriptor.h +0 -69
- libesedb-20240420/libesedb/libesedb_libbfio.h +0 -58
- libesedb-20240420/libesedb/libesedb_libcdata.h +0 -54
- libesedb-20240420/libesedb/libesedb_libcerror.h +0 -50
- libesedb-20240420/libesedb/libesedb_libclocale.h +0 -50
- libesedb-20240420/libesedb/libesedb_libcnotify.h +0 -50
- libesedb-20240420/libesedb/libesedb_libfcache.h +0 -50
- libesedb-20240420/libesedb/libesedb_libfdata.h +0 -54
- libesedb-20240420/libesedb/libesedb_libfvalue.h +0 -60
- libesedb-20240420/libesedb/libesedb_libfwnt.h +0 -58
- libesedb-20240420/libesedb/libesedb_libuna.h +0 -60
- libesedb-20240420/libesedb/libesedb_long_value.c +0 -1315
- libesedb-20240420/libesedb/libesedb_long_value.h +0 -154
- libesedb-20240420/libesedb/libesedb_multi_value.c +0 -1606
- libesedb-20240420/libesedb/libesedb_multi_value.h +0 -213
- libesedb-20240420/libesedb/libesedb_notify.c +0 -120
- libesedb-20240420/libesedb/libesedb_notify.h +0 -63
- libesedb-20240420/libesedb/libesedb_page.c +0 -1656
- libesedb-20240420/libesedb/libesedb_page.h +0 -156
- libesedb-20240420/libesedb/libesedb_page_header.c +0 -581
- libesedb-20240420/libesedb/libesedb_page_header.h +0 -116
- libesedb-20240420/libesedb/libesedb_page_tree.c +0 -3254
- libesedb-20240420/libesedb/libesedb_page_tree.h +0 -201
- libesedb-20240420/libesedb/libesedb_page_tree_key.c +0 -697
- libesedb-20240420/libesedb/libesedb_page_tree_key.h +0 -81
- libesedb-20240420/libesedb/libesedb_page_tree_value.c +0 -299
- libesedb-20240420/libesedb/libesedb_page_tree_value.h +0 -79
- libesedb-20240420/libesedb/libesedb_page_value.c +0 -133
- libesedb-20240420/libesedb/libesedb_page_value.h +0 -68
- libesedb-20240420/libesedb/libesedb_record.c +0 -3876
- libesedb-20240420/libesedb/libesedb_record.h +0 -343
- libesedb-20240420/libesedb/libesedb_record_value.c +0 -506
- libesedb-20240420/libesedb/libesedb_record_value.h +0 -62
- libesedb-20240420/libesedb/libesedb_root_page_header.c +0 -288
- libesedb-20240420/libesedb/libesedb_root_page_header.h +0 -70
- libesedb-20240420/libesedb/libesedb_space_tree.c +0 -861
- libesedb-20240420/libesedb/libesedb_space_tree.h +0 -79
- libesedb-20240420/libesedb/libesedb_space_tree_value.c +0 -209
- libesedb-20240420/libesedb/libesedb_space_tree_value.h +0 -62
- libesedb-20240420/libesedb/libesedb_support.c +0 -430
- libesedb-20240420/libesedb/libesedb_support.h +0 -82
- libesedb-20240420/libesedb/libesedb_table.c +0 -1564
- libesedb-20240420/libesedb/libesedb_table.h +0 -204
- libesedb-20240420/libesedb/libesedb_table_definition.c +0 -682
- libesedb-20240420/libesedb/libesedb_table_definition.h +0 -117
- libesedb-20240420/libesedb/libesedb_types.h +0 -59
- libesedb-20240420/libesedb/libesedb_unused.h +0 -44
- libesedb-20240420/libesedb/libesedb_value_data_handle.c +0 -223
- libesedb-20240420/libesedb/libesedb_value_data_handle.h +0 -49
- libesedb-20240420/libesedb.spec +0 -100
- libesedb-20240420/libfcache/Makefile.in +0 -908
- libesedb-20240420/libfcache/libfcache_cache.c +0 -1118
- libesedb-20240420/libfcache/libfcache_cache.h +0 -149
- libesedb-20240420/libfcache/libfcache_cache_value.c +0 -502
- libesedb-20240420/libfcache/libfcache_cache_value.h +0 -132
- libesedb-20240420/libfcache/libfcache_date_time.c +0 -92
- libesedb-20240420/libfcache/libfcache_date_time.h +0 -45
- libesedb-20240420/libfcache/libfcache_definitions.h +0 -58
- libesedb-20240420/libfcache/libfcache_error.c +0 -111
- libesedb-20240420/libfcache/libfcache_error.h +0 -74
- libesedb-20240420/libfcache/libfcache_extern.h +0 -46
- libesedb-20240420/libfcache/libfcache_libcdata.h +0 -54
- libesedb-20240420/libfcache/libfcache_libcerror.h +0 -50
- libesedb-20240420/libfcache/libfcache_support.c +0 -41
- libesedb-20240420/libfcache/libfcache_support.h +0 -47
- libesedb-20240420/libfcache/libfcache_types.h +0 -49
- libesedb-20240420/libfcache/libfcache_unused.h +0 -44
- libesedb-20240420/libfdata/Makefile.in +0 -961
- libesedb-20240420/libfdata/libfdata_area.c +0 -1482
- libesedb-20240420/libfdata/libfdata_area.h +0 -278
- libesedb-20240420/libfdata/libfdata_cache.c +0 -59
- libesedb-20240420/libfdata/libfdata_cache.h +0 -56
- libesedb-20240420/libfdata/libfdata_definitions.h +0 -249
- libesedb-20240420/libfdata/libfdata_error.c +0 -111
- libesedb-20240420/libfdata/libfdata_error.h +0 -74
- libesedb-20240420/libfdata/libfdata_extern.h +0 -46
- libesedb-20240420/libfdata/libfdata_libcdata.h +0 -54
- libesedb-20240420/libfdata/libfdata_libcerror.h +0 -50
- libesedb-20240420/libfdata/libfdata_libcnotify.h +0 -50
- libesedb-20240420/libfdata/libfdata_libfcache.h +0 -50
- libesedb-20240420/libfdata/libfdata_list.c +0 -4426
- libesedb-20240420/libfdata/libfdata_list.h +0 -452
- libesedb-20240420/libfdata/libfdata_list_element.c +0 -824
- libesedb-20240420/libfdata/libfdata_list_element.h +0 -159
- libesedb-20240420/libfdata/libfdata_mapped_range.c +0 -312
- libesedb-20240420/libfdata/libfdata_mapped_range.h +0 -77
- libesedb-20240420/libfdata/libfdata_notify.c +0 -120
- libesedb-20240420/libfdata/libfdata_notify.h +0 -63
- libesedb-20240420/libfdata/libfdata_range.c +0 -358
- libesedb-20240420/libfdata/libfdata_range.h +0 -94
- libesedb-20240420/libfdata/libfdata_range_list.c +0 -1196
- libesedb-20240420/libfdata/libfdata_range_list.h +0 -214
- libesedb-20240420/libfdata/libfdata_segments_array.c +0 -914
- libesedb-20240420/libfdata/libfdata_segments_array.h +0 -94
- libesedb-20240420/libfdata/libfdata_stream.c +0 -2582
- libesedb-20240420/libfdata/libfdata_stream.h +0 -363
- libesedb-20240420/libfdata/libfdata_support.c +0 -41
- libesedb-20240420/libfdata/libfdata_support.h +0 -47
- libesedb-20240420/libfdata/libfdata_types.h +0 -59
- libesedb-20240420/libfdata/libfdata_unused.h +0 -44
- libesedb-20240420/libfdata/libfdata_vector.c +0 -1932
- libesedb-20240420/libfdata/libfdata_vector.h +0 -295
- libesedb-20240420/libfdatetime/Makefile.in +0 -939
- libesedb-20240420/libfdatetime/libfdatetime_date_time_values.c +0 -1906
- libesedb-20240420/libfdatetime/libfdatetime_date_time_values.h +0 -121
- libesedb-20240420/libfdatetime/libfdatetime_definitions.h +0 -121
- libesedb-20240420/libfdatetime/libfdatetime_error.c +0 -111
- libesedb-20240420/libfdatetime/libfdatetime_error.h +0 -74
- libesedb-20240420/libfdatetime/libfdatetime_extern.h +0 -46
- libesedb-20240420/libfdatetime/libfdatetime_fat_date_time.c +0 -1258
- libesedb-20240420/libfdatetime/libfdatetime_fat_date_time.h +0 -172
- libesedb-20240420/libfdatetime/libfdatetime_filetime.c +0 -1465
- libesedb-20240420/libfdatetime/libfdatetime_filetime.h +0 -177
- libesedb-20240420/libfdatetime/libfdatetime_floatingtime.c +0 -1333
- libesedb-20240420/libfdatetime/libfdatetime_floatingtime.h +0 -168
- libesedb-20240420/libfdatetime/libfdatetime_hfs_time.c +0 -1329
- libesedb-20240420/libfdatetime/libfdatetime_hfs_time.h +0 -166
- libesedb-20240420/libfdatetime/libfdatetime_libcerror.h +0 -50
- libesedb-20240420/libfdatetime/libfdatetime_nsf_timedate.c +0 -1373
- libesedb-20240420/libfdatetime/libfdatetime_nsf_timedate.h +0 -177
- libesedb-20240420/libfdatetime/libfdatetime_posix_time.c +0 -1842
- libesedb-20240420/libfdatetime/libfdatetime_posix_time.h +0 -189
- libesedb-20240420/libfdatetime/libfdatetime_support.c +0 -41
- libesedb-20240420/libfdatetime/libfdatetime_support.h +0 -47
- libesedb-20240420/libfdatetime/libfdatetime_systemtime.c +0 -1779
- libesedb-20240420/libfdatetime/libfdatetime_systemtime.h +0 -180
- libesedb-20240420/libfdatetime/libfdatetime_types.h +0 -63
- libesedb-20240420/libfdatetime/libfdatetime_unused.h +0 -44
- libesedb-20240420/libfguid/Makefile.in +0 -889
- libesedb-20240420/libfguid/libfguid_definitions.h +0 -84
- libesedb-20240420/libfguid/libfguid_error.c +0 -111
- libesedb-20240420/libfguid/libfguid_error.h +0 -74
- libesedb-20240420/libfguid/libfguid_extern.h +0 -46
- libesedb-20240420/libfguid/libfguid_identifier.c +0 -2524
- libesedb-20240420/libfguid/libfguid_identifier.h +0 -204
- libesedb-20240420/libfguid/libfguid_libcerror.h +0 -50
- libesedb-20240420/libfguid/libfguid_support.c +0 -41
- libesedb-20240420/libfguid/libfguid_support.h +0 -47
- libesedb-20240420/libfguid/libfguid_types.h +0 -47
- libesedb-20240420/libfguid/libfguid_unused.h +0 -44
- libesedb-20240420/libfmapi/Makefile.in +0 -968
- libesedb-20240420/libfmapi/libfmapi_checksum.c +0 -204
- libesedb-20240420/libfmapi/libfmapi_checksum.h +0 -63
- libesedb-20240420/libfmapi/libfmapi_class_identifier.c +0 -131
- libesedb-20240420/libfmapi/libfmapi_class_identifier.h +0 -114
- libesedb-20240420/libfmapi/libfmapi_codepage.c +0 -108
- libesedb-20240420/libfmapi/libfmapi_codepage.h +0 -63
- libesedb-20240420/libfmapi/libfmapi_debug.c +0 -5766
- libesedb-20240420/libfmapi/libfmapi_debug.h +0 -113
- libesedb-20240420/libfmapi/libfmapi_definitions.h +0 -73
- libesedb-20240420/libfmapi/libfmapi_entry_identifier.c +0 -414
- libesedb-20240420/libfmapi/libfmapi_entry_identifier.h +0 -78
- libesedb-20240420/libfmapi/libfmapi_error.c +0 -111
- libesedb-20240420/libfmapi/libfmapi_error.h +0 -74
- libesedb-20240420/libfmapi/libfmapi_extern.h +0 -46
- libesedb-20240420/libfmapi/libfmapi_libcerror.h +0 -50
- libesedb-20240420/libfmapi/libfmapi_libcnotify.h +0 -50
- libesedb-20240420/libfmapi/libfmapi_libfdatetime.h +0 -56
- libesedb-20240420/libfmapi/libfmapi_libfguid.h +0 -49
- libesedb-20240420/libfmapi/libfmapi_libfwnt.h +0 -58
- libesedb-20240420/libfmapi/libfmapi_libuna.h +0 -60
- libesedb-20240420/libfmapi/libfmapi_lzfu.c +0 -616
- libesedb-20240420/libfmapi/libfmapi_lzfu.h +0 -78
- libesedb-20240420/libfmapi/libfmapi_one_off_entry_identifier.c +0 -1474
- libesedb-20240420/libfmapi/libfmapi_one_off_entry_identifier.h +0 -190
- libesedb-20240420/libfmapi/libfmapi_property_type.c +0 -3113
- libesedb-20240420/libfmapi/libfmapi_property_type.h +0 -131
- libesedb-20240420/libfmapi/libfmapi_service_provider_identifier.c +0 -82
- libesedb-20240420/libfmapi/libfmapi_service_provider_identifier.h +0 -48
- libesedb-20240420/libfmapi/libfmapi_support.c +0 -39
- libesedb-20240420/libfmapi/libfmapi_support.h +0 -47
- libesedb-20240420/libfmapi/libfmapi_types.h +0 -49
- libesedb-20240420/libfmapi/libfmapi_unused.h +0 -44
- libesedb-20240420/libfmapi/libfmapi_value_type.c +0 -105
- libesedb-20240420/libfmapi/libfmapi_value_type.h +0 -64
- libesedb-20240420/libfmapi/libfmapi_x400_object_identifier.h +0 -73
- libesedb-20240420/libfvalue/Makefile.in +0 -998
- libesedb-20240420/libfvalue/libfvalue_binary_data.c +0 -1546
- libesedb-20240420/libfvalue/libfvalue_binary_data.h +0 -114
- libesedb-20240420/libfvalue/libfvalue_codepage.h +0 -103
- libesedb-20240420/libfvalue/libfvalue_data_handle.c +0 -1661
- libesedb-20240420/libfvalue/libfvalue_data_handle.h +0 -195
- libesedb-20240420/libfvalue/libfvalue_definitions.h +0 -350
- libesedb-20240420/libfvalue/libfvalue_error.c +0 -111
- libesedb-20240420/libfvalue/libfvalue_error.h +0 -74
- libesedb-20240420/libfvalue/libfvalue_extern.h +0 -46
- libesedb-20240420/libfvalue/libfvalue_filetime.c +0 -113
- libesedb-20240420/libfvalue/libfvalue_filetime.h +0 -56
- libesedb-20240420/libfvalue/libfvalue_floating_point.c +0 -3456
- libesedb-20240420/libfvalue/libfvalue_floating_point.h +0 -246
- libesedb-20240420/libfvalue/libfvalue_integer.c +0 -2886
- libesedb-20240420/libfvalue/libfvalue_integer.h +0 -261
- libesedb-20240420/libfvalue/libfvalue_libcdata.h +0 -54
- libesedb-20240420/libfvalue/libfvalue_libcerror.h +0 -50
- libesedb-20240420/libfvalue/libfvalue_libcnotify.h +0 -50
- libesedb-20240420/libfvalue/libfvalue_libfdatetime.h +0 -58
- libesedb-20240420/libfvalue/libfvalue_libfguid.h +0 -51
- libesedb-20240420/libfvalue/libfvalue_libfwnt.h +0 -57
- libesedb-20240420/libfvalue/libfvalue_libuna.h +0 -60
- libesedb-20240420/libfvalue/libfvalue_split_utf16_string.c +0 -546
- libesedb-20240420/libfvalue/libfvalue_split_utf16_string.h +0 -114
- libesedb-20240420/libfvalue/libfvalue_split_utf8_string.c +0 -535
- libesedb-20240420/libfvalue/libfvalue_split_utf8_string.h +0 -114
- libesedb-20240420/libfvalue/libfvalue_string.c +0 -3070
- libesedb-20240420/libfvalue/libfvalue_string.h +0 -165
- libesedb-20240420/libfvalue/libfvalue_support.c +0 -41
- libesedb-20240420/libfvalue/libfvalue_support.h +0 -47
- libesedb-20240420/libfvalue/libfvalue_table.c +0 -1357
- libesedb-20240420/libfvalue/libfvalue_table.h +0 -136
- libesedb-20240420/libfvalue/libfvalue_types.h +0 -55
- libesedb-20240420/libfvalue/libfvalue_unused.h +0 -44
- libesedb-20240420/libfvalue/libfvalue_utf16_string.c +0 -300
- libesedb-20240420/libfvalue/libfvalue_utf16_string.h +0 -50
- libesedb-20240420/libfvalue/libfvalue_utf8_string.c +0 -300
- libesedb-20240420/libfvalue/libfvalue_utf8_string.h +0 -50
- libesedb-20240420/libfvalue/libfvalue_value.c +0 -5241
- libesedb-20240420/libfvalue/libfvalue_value.h +0 -753
- libesedb-20240420/libfvalue/libfvalue_value_entry.c +0 -210
- libesedb-20240420/libfvalue/libfvalue_value_entry.h +0 -65
- libesedb-20240420/libfvalue/libfvalue_value_type.c +0 -1183
- libesedb-20240420/libfvalue/libfvalue_value_type.h +0 -100
- libesedb-20240420/libfwnt/Makefile.in +0 -966
- libesedb-20240420/libfwnt/libfwnt_access_control_entry.c +0 -764
- libesedb-20240420/libfwnt/libfwnt_access_control_entry.h +0 -116
- libesedb-20240420/libfwnt/libfwnt_access_control_list.c +0 -518
- libesedb-20240420/libfwnt/libfwnt_access_control_list.h +0 -93
- libesedb-20240420/libfwnt/libfwnt_bit_stream.c +0 -308
- libesedb-20240420/libfwnt/libfwnt_bit_stream.h +0 -85
- libesedb-20240420/libfwnt/libfwnt_debug.c +0 -355
- libesedb-20240420/libfwnt/libfwnt_debug.h +0 -53
- libesedb-20240420/libfwnt/libfwnt_definitions.h +0 -112
- libesedb-20240420/libfwnt/libfwnt_error.c +0 -111
- libesedb-20240420/libfwnt/libfwnt_error.h +0 -74
- libesedb-20240420/libfwnt/libfwnt_extern.h +0 -46
- libesedb-20240420/libfwnt/libfwnt_huffman_tree.c +0 -589
- libesedb-20240420/libfwnt/libfwnt_huffman_tree.h +0 -79
- libesedb-20240420/libfwnt/libfwnt_libcdata.h +0 -54
- libesedb-20240420/libfwnt/libfwnt_libcerror.h +0 -50
- libesedb-20240420/libfwnt/libfwnt_libcnotify.h +0 -50
- libesedb-20240420/libfwnt/libfwnt_locale_identifier.c +0 -470
- libesedb-20240420/libfwnt/libfwnt_locale_identifier.h +0 -60
- libesedb-20240420/libfwnt/libfwnt_lznt1.c +0 -560
- libesedb-20240420/libfwnt/libfwnt_lznt1.h +0 -57
- libesedb-20240420/libfwnt/libfwnt_lzx.c +0 -1465
- libesedb-20240420/libfwnt/libfwnt_lzx.h +0 -95
- libesedb-20240420/libfwnt/libfwnt_lzxpress.c +0 -1041
- libesedb-20240420/libfwnt/libfwnt_lzxpress.h +0 -86
- libesedb-20240420/libfwnt/libfwnt_notify.c +0 -120
- libesedb-20240420/libfwnt/libfwnt_notify.h +0 -63
- libesedb-20240420/libfwnt/libfwnt_security_descriptor.c +0 -1028
- libesedb-20240420/libfwnt/libfwnt_security_descriptor.h +0 -116
- libesedb-20240420/libfwnt/libfwnt_security_identifier.c +0 -1176
- libesedb-20240420/libfwnt/libfwnt_security_identifier.h +0 -166
- libesedb-20240420/libfwnt/libfwnt_support.c +0 -41
- libesedb-20240420/libfwnt/libfwnt_support.h +0 -47
- libesedb-20240420/libfwnt/libfwnt_types.h +0 -53
- libesedb-20240420/libfwnt/libfwnt_unused.h +0 -44
- libesedb-20240420/libmapidb/Makefile.in +0 -899
- libesedb-20240420/libuna/Makefile.in +0 -1308
- libesedb-20240420/libuna/libuna_base16_stream.c +0 -1511
- libesedb-20240420/libuna/libuna_base16_stream.h +0 -93
- libesedb-20240420/libuna/libuna_base32_stream.c +0 -3035
- libesedb-20240420/libuna/libuna_base32_stream.h +0 -131
- libesedb-20240420/libuna/libuna_base64_stream.c +0 -2832
- libesedb-20240420/libuna/libuna_base64_stream.h +0 -131
- libesedb-20240420/libuna/libuna_byte_stream.c +0 -633
- libesedb-20240420/libuna/libuna_byte_stream.h +0 -104
- libesedb-20240420/libuna/libuna_codepage_iso_8859_10.c +0 -73
- libesedb-20240420/libuna/libuna_codepage_iso_8859_10.h +0 -48
- libesedb-20240420/libuna/libuna_codepage_iso_8859_13.c +0 -81
- libesedb-20240420/libuna/libuna_codepage_iso_8859_13.h +0 -48
- libesedb-20240420/libuna/libuna_codepage_iso_8859_14.c +0 -66
- libesedb-20240420/libuna/libuna_codepage_iso_8859_14.h +0 -51
- libesedb-20240420/libuna/libuna_codepage_iso_8859_15.c +0 -46
- libesedb-20240420/libuna/libuna_codepage_iso_8859_15.h +0 -45
- libesedb-20240420/libuna/libuna_codepage_iso_8859_16.c +0 -78
- libesedb-20240420/libuna/libuna_codepage_iso_8859_16.h +0 -57
- libesedb-20240420/libuna/libuna_codepage_iso_8859_2.c +0 -82
- libesedb-20240420/libuna/libuna_codepage_iso_8859_2.h +0 -51
- libesedb-20240420/libuna/libuna_codepage_iso_8859_3.c +0 -79
- libesedb-20240420/libuna/libuna_codepage_iso_8859_3.h +0 -57
- libesedb-20240420/libuna/libuna_codepage_iso_8859_4.c +0 -80
- libesedb-20240420/libuna/libuna_codepage_iso_8859_4.h +0 -48
- libesedb-20240420/libuna/libuna_codepage_iso_8859_5.c +0 -62
- libesedb-20240420/libuna/libuna_codepage_iso_8859_5.h +0 -45
- libesedb-20240420/libuna/libuna_codepage_iso_8859_6.c +0 -58
- libesedb-20240420/libuna/libuna_codepage_iso_8859_6.h +0 -45
- libesedb-20240420/libuna/libuna_codepage_iso_8859_7.c +0 -66
- libesedb-20240420/libuna/libuna_codepage_iso_8859_7.h +0 -48
- libesedb-20240420/libuna/libuna_codepage_iso_8859_8.c +0 -61
- libesedb-20240420/libuna/libuna_codepage_iso_8859_8.h +0 -48
- libesedb-20240420/libuna/libuna_codepage_iso_8859_9.c +0 -50
- libesedb-20240420/libuna/libuna_codepage_iso_8859_9.h +0 -45
- libesedb-20240420/libuna/libuna_codepage_koi8_r.c +0 -392
- libesedb-20240420/libuna/libuna_codepage_koi8_r.h +0 -54
- libesedb-20240420/libuna/libuna_codepage_koi8_u.c +0 -424
- libesedb-20240420/libuna/libuna_codepage_koi8_u.h +0 -54
- libesedb-20240420/libuna/libuna_codepage_mac_arabic.c +0 -352
- libesedb-20240420/libuna/libuna_codepage_mac_arabic.h +0 -54
- libesedb-20240420/libuna/libuna_codepage_mac_celtic.c +0 -395
- libesedb-20240420/libuna/libuna_codepage_mac_celtic.h +0 -54
- libesedb-20240420/libuna/libuna_codepage_mac_centraleurroman.c +0 -319
- libesedb-20240420/libuna/libuna_codepage_mac_centraleurroman.h +0 -54
- libesedb-20240420/libuna/libuna_codepage_mac_croatian.c +0 -378
- libesedb-20240420/libuna/libuna_codepage_mac_croatian.h +0 -54
- libesedb-20240420/libuna/libuna_codepage_mac_cyrillic.c +0 -325
- libesedb-20240420/libuna/libuna_codepage_mac_cyrillic.h +0 -54
- libesedb-20240420/libuna/libuna_codepage_mac_dingbats.c +0 -347
- libesedb-20240420/libuna/libuna_codepage_mac_dingbats.h +0 -54
- libesedb-20240420/libuna/libuna_codepage_mac_farsi.c +0 -372
- libesedb-20240420/libuna/libuna_codepage_mac_farsi.h +0 -54
- libesedb-20240420/libuna/libuna_codepage_mac_gaelic.c +0 -437
- libesedb-20240420/libuna/libuna_codepage_mac_gaelic.h +0 -54
- libesedb-20240420/libuna/libuna_codepage_mac_greek.c +0 -305
- libesedb-20240420/libuna/libuna_codepage_mac_greek.h +0 -54
- libesedb-20240420/libuna/libuna_codepage_mac_icelandic.c +0 -381
- libesedb-20240420/libuna/libuna_codepage_mac_icelandic.h +0 -54
- libesedb-20240420/libuna/libuna_codepage_mac_inuit.c +0 -380
- libesedb-20240420/libuna/libuna_codepage_mac_inuit.h +0 -54
- libesedb-20240420/libuna/libuna_codepage_mac_roman.c +0 -387
- libesedb-20240420/libuna/libuna_codepage_mac_roman.h +0 -54
- libesedb-20240420/libuna/libuna_codepage_mac_romanian.c +0 -396
- libesedb-20240420/libuna/libuna_codepage_mac_romanian.h +0 -54
- libesedb-20240420/libuna/libuna_codepage_mac_russian.c +0 -317
- libesedb-20240420/libuna/libuna_codepage_mac_russian.h +0 -54
- libesedb-20240420/libuna/libuna_codepage_mac_symbol.c +0 -537
- libesedb-20240420/libuna/libuna_codepage_mac_symbol.h +0 -59
- libesedb-20240420/libuna/libuna_codepage_mac_thai.c +0 -330
- libesedb-20240420/libuna/libuna_codepage_mac_thai.h +0 -59
- libesedb-20240420/libuna/libuna_codepage_mac_turkish.c +0 -397
- libesedb-20240420/libuna/libuna_codepage_mac_turkish.h +0 -54
- libesedb-20240420/libuna/libuna_codepage_mac_ukrainian.c +0 -321
- libesedb-20240420/libuna/libuna_codepage_mac_ukrainian.h +0 -54
- libesedb-20240420/libuna/libuna_codepage_windows_1250.c +0 -313
- libesedb-20240420/libuna/libuna_codepage_windows_1250.h +0 -54
- libesedb-20240420/libuna/libuna_codepage_windows_1251.c +0 -301
- libesedb-20240420/libuna/libuna_codepage_windows_1251.h +0 -54
- libesedb-20240420/libuna/libuna_codepage_windows_1252.c +0 -287
- libesedb-20240420/libuna/libuna_codepage_windows_1252.h +0 -54
- libesedb-20240420/libuna/libuna_codepage_windows_1253.c +0 -291
- libesedb-20240420/libuna/libuna_codepage_windows_1253.h +0 -54
- libesedb-20240420/libuna/libuna_codepage_windows_1254.c +0 -348
- libesedb-20240420/libuna/libuna_codepage_windows_1254.h +0 -54
- libesedb-20240420/libuna/libuna_codepage_windows_1255.c +0 -328
- libesedb-20240420/libuna/libuna_codepage_windows_1255.h +0 -54
- libesedb-20240420/libuna/libuna_codepage_windows_1256.c +0 -372
- libesedb-20240420/libuna/libuna_codepage_windows_1256.h +0 -54
- libesedb-20240420/libuna/libuna_codepage_windows_1257.c +0 -303
- libesedb-20240420/libuna/libuna_codepage_windows_1257.h +0 -54
- libesedb-20240420/libuna/libuna_codepage_windows_1258.c +0 -349
- libesedb-20240420/libuna/libuna_codepage_windows_1258.h +0 -54
- libesedb-20240420/libuna/libuna_codepage_windows_874.c +0 -274
- libesedb-20240420/libuna/libuna_codepage_windows_874.h +0 -54
- libesedb-20240420/libuna/libuna_codepage_windows_932.c +0 -4913
- libesedb-20240420/libuna/libuna_codepage_windows_932.h +0 -59
- libesedb-20240420/libuna/libuna_codepage_windows_936.c +0 -7371
- libesedb-20240420/libuna/libuna_codepage_windows_936.h +0 -59
- libesedb-20240420/libuna/libuna_codepage_windows_949.c +0 -8168
- libesedb-20240420/libuna/libuna_codepage_windows_949.h +0 -59
- libesedb-20240420/libuna/libuna_codepage_windows_950.c +0 -6390
- libesedb-20240420/libuna/libuna_codepage_windows_950.h +0 -59
- libesedb-20240420/libuna/libuna_definitions.h +0 -436
- libesedb-20240420/libuna/libuna_error.c +0 -111
- libesedb-20240420/libuna/libuna_error.h +0 -74
- libesedb-20240420/libuna/libuna_extern.h +0 -46
- libesedb-20240420/libuna/libuna_libcerror.h +0 -50
- libesedb-20240420/libuna/libuna_scsu.c +0 -64
- libesedb-20240420/libuna/libuna_scsu.h +0 -45
- libesedb-20240420/libuna/libuna_support.c +0 -39
- libesedb-20240420/libuna/libuna_support.h +0 -49
- libesedb-20240420/libuna/libuna_types.h +0 -53
- libesedb-20240420/libuna/libuna_unicode_character.c +0 -5784
- libesedb-20240420/libuna/libuna_unicode_character.h +0 -260
- libesedb-20240420/libuna/libuna_unused.h +0 -44
- libesedb-20240420/libuna/libuna_url_stream.c +0 -584
- libesedb-20240420/libuna/libuna_url_stream.h +0 -71
- libesedb-20240420/libuna/libuna_utf16_stream.c +0 -815
- libesedb-20240420/libuna/libuna_utf16_stream.h +0 -109
- libesedb-20240420/libuna/libuna_utf16_string.c +0 -3950
- libesedb-20240420/libuna/libuna_utf16_string.h +0 -325
- libesedb-20240420/libuna/libuna_utf32_stream.c +0 -819
- libesedb-20240420/libuna/libuna_utf32_stream.h +0 -109
- libesedb-20240420/libuna/libuna_utf32_string.c +0 -3808
- libesedb-20240420/libuna/libuna_utf32_string.h +0 -321
- libesedb-20240420/libuna/libuna_utf7_stream.c +0 -628
- libesedb-20240420/libuna/libuna_utf7_stream.h +0 -98
- libesedb-20240420/libuna/libuna_utf8_stream.c +0 -748
- libesedb-20240420/libuna/libuna_utf8_stream.h +0 -105
- libesedb-20240420/libuna/libuna_utf8_string.c +0 -4092
- libesedb-20240420/libuna/libuna_utf8_string.h +0 -329
- libesedb-20240420/ltmain.sh +0 -11429
- libesedb-20240420/m4/common.m4 +0 -578
- libesedb-20240420/m4/libbfio.m4 +0 -422
- libesedb-20240420/m4/libcdata.m4 +0 -599
- libesedb-20240420/m4/libcerror.m4 +0 -237
- libesedb-20240420/m4/libcfile.m4 +0 -429
- libesedb-20240420/m4/libclocale.m4 +0 -291
- libesedb-20240420/m4/libcnotify.m4 +0 -209
- libesedb-20240420/m4/libcpath.m4 +0 -344
- libesedb-20240420/m4/libcsplit.m4 +0 -249
- libesedb-20240420/m4/libcthreads.m4 +0 -385
- libesedb-20240420/m4/libfcache.m4 +0 -266
- libesedb-20240420/m4/libfdata.m4 +0 -555
- libesedb-20240420/m4/libfdatetime.m4 +0 -560
- libesedb-20240420/m4/libfguid.m4 +0 -210
- libesedb-20240420/m4/libfmapi.m4 +0 -311
- libesedb-20240420/m4/libfvalue.m4 +0 -691
- libesedb-20240420/m4/libfwnt.m4 +0 -320
- libesedb-20240420/m4/libmapidb.m4 +0 -156
- libesedb-20240420/m4/libtool.m4 +0 -8403
- libesedb-20240420/m4/libuna.m4 +0 -1044
- libesedb-20240420/m4/pthread.m4 +0 -196
- libesedb-20240420/m4/python.m4 +0 -208
- libesedb-20240420/m4/tests.m4 +0 -33
- libesedb-20240420/m4/types.m4 +0 -133
- libesedb-20240420/manuals/Makefile.am +0 -12
- libesedb-20240420/manuals/Makefile.in +0 -832
- libesedb-20240420/manuals/esedbinfo.1 +0 -96
- libesedb-20240420/manuals/libesedb.3 +0 -309
- libesedb-20240420/msvscpp/Makefile.in +0 -766
- libesedb-20240420/ossfuzz/Makefile.in +0 -1061
- libesedb-20240420/ossfuzz/column_fuzzer.cc +0 -146
- libesedb-20240420/ossfuzz/file_fuzzer.cc +0 -99
- libesedb-20240420/ossfuzz/ossfuzz_libbfio.h +0 -58
- libesedb-20240420/ossfuzz/ossfuzz_libesedb.h +0 -30
- libesedb-20240420/ossfuzz/record_fuzzer.cc +0 -144
- libesedb-20240420/ossfuzz/table_fuzzer.cc +0 -121
- libesedb-20240420/po/Makevars +0 -45
- libesedb-20240420/pyesedb/Makefile.am +0 -63
- libesedb-20240420/pyesedb/Makefile.in +0 -1204
- libesedb-20240420/pyesedb/pyesedb.c +0 -891
- libesedb-20240420/pyesedb/pyesedb.h +0 -71
- libesedb-20240420/pyesedb/pyesedb_column.c +0 -559
- libesedb-20240420/pyesedb/pyesedb_column.h +0 -82
- libesedb-20240420/pyesedb/pyesedb_column_types.c +0 -516
- libesedb-20240420/pyesedb/pyesedb_column_types.h +0 -63
- libesedb-20240420/pyesedb/pyesedb_columns.c +0 -452
- libesedb-20240420/pyesedb/pyesedb_columns.h +0 -95
- libesedb-20240420/pyesedb/pyesedb_datetime.c +0 -691
- libesedb-20240420/pyesedb/pyesedb_datetime.h +0 -65
- libesedb-20240420/pyesedb/pyesedb_error.c +0 -422
- libesedb-20240420/pyesedb/pyesedb_error.h +0 -60
- libesedb-20240420/pyesedb/pyesedb_file.c +0 -1399
- libesedb-20240420/pyesedb/pyesedb_file.h +0 -136
- libesedb-20240420/pyesedb/pyesedb_file_object_io_handle.c +0 -1524
- libesedb-20240420/pyesedb/pyesedb_file_object_io_handle.h +0 -141
- libesedb-20240420/pyesedb/pyesedb_file_types.c +0 -292
- libesedb-20240420/pyesedb/pyesedb_file_types.h +0 -63
- libesedb-20240420/pyesedb/pyesedb_index.c +0 -741
- libesedb-20240420/pyesedb/pyesedb_index.h +0 -95
- libesedb-20240420/pyesedb/pyesedb_indexes.c +0 -452
- libesedb-20240420/pyesedb/pyesedb_indexes.h +0 -95
- libesedb-20240420/pyesedb/pyesedb_integer.c +0 -399
- libesedb-20240420/pyesedb/pyesedb_integer.h +0 -56
- libesedb-20240420/pyesedb/pyesedb_libbfio.h +0 -54
- libesedb-20240420/pyesedb/pyesedb_libcerror.h +0 -50
- libesedb-20240420/pyesedb/pyesedb_libclocale.h +0 -50
- libesedb-20240420/pyesedb/pyesedb_libesedb.h +0 -30
- libesedb-20240420/pyesedb/pyesedb_long_value.c +0 -549
- libesedb-20240420/pyesedb/pyesedb_long_value.h +0 -78
- libesedb-20240420/pyesedb/pyesedb_multi_value.c +0 -1004
- libesedb-20240420/pyesedb/pyesedb_multi_value.h +0 -94
- libesedb-20240420/pyesedb/pyesedb_python.h +0 -83
- libesedb-20240420/pyesedb/pyesedb_record.c +0 -1669
- libesedb-20240420/pyesedb/pyesedb_record.h +0 -129
- libesedb-20240420/pyesedb/pyesedb_records.c +0 -452
- libesedb-20240420/pyesedb/pyesedb_records.h +0 -95
- libesedb-20240420/pyesedb/pyesedb_table.c +0 -1115
- libesedb-20240420/pyesedb/pyesedb_table.h +0 -116
- libesedb-20240420/pyesedb/pyesedb_tables.c +0 -452
- libesedb-20240420/pyesedb/pyesedb_tables.h +0 -95
- libesedb-20240420/pyesedb/pyesedb_unused.h +0 -44
- libesedb-20240420/pyesedb/pyesedb_value_flags.c +0 -320
- libesedb-20240420/pyesedb/pyesedb_value_flags.h +0 -63
- libesedb-20240420/pyproject.toml +0 -4
- libesedb-20240420/setup.cfg +0 -16
- libesedb-20240420/setup.cfg.in +0 -16
- libesedb-20240420/setup.py +0 -293
- libesedb-20240420/test-driver +0 -153
- libesedb-20240420/tests/Makefile.am +0 -624
- libesedb-20240420/tests/Makefile.in +0 -2438
- libesedb-20240420/tests/esedb_test_block_descriptor.c +0 -311
- libesedb-20240420/tests/esedb_test_block_tree.c +0 -752
- libesedb-20240420/tests/esedb_test_block_tree_node.c +0 -331
- libesedb-20240420/tests/esedb_test_catalog.c +0 -1281
- libesedb-20240420/tests/esedb_test_catalog_definition.c +0 -1781
- libesedb-20240420/tests/esedb_test_checksum.c +0 -1382
- libesedb-20240420/tests/esedb_test_column.c +0 -1236
- libesedb-20240420/tests/esedb_test_column_type.c +0 -128
- libesedb-20240420/tests/esedb_test_compression.c +0 -1458
- libesedb-20240420/tests/esedb_test_data_definition.c +0 -498
- libesedb-20240420/tests/esedb_test_data_segment.c +0 -998
- libesedb-20240420/tests/esedb_test_database.c +0 -417
- libesedb-20240420/tests/esedb_test_error.c +0 -150
- libesedb-20240420/tests/esedb_test_file.c +0 -1718
- libesedb-20240420/tests/esedb_test_file_header.c +0 -880
- libesedb-20240420/tests/esedb_test_functions.c +0 -562
- libesedb-20240420/tests/esedb_test_functions.h +0 -66
- libesedb-20240420/tests/esedb_test_getopt.c +0 -190
- libesedb-20240420/tests/esedb_test_getopt.h +0 -68
- libesedb-20240420/tests/esedb_test_index.c +0 -128
- libesedb-20240420/tests/esedb_test_io_handle.c +0 -443
- libesedb-20240420/tests/esedb_test_leaf_page_descriptor.c +0 -470
- libesedb-20240420/tests/esedb_test_libbfio.h +0 -58
- libesedb-20240420/tests/esedb_test_libcdata.h +0 -54
- libesedb-20240420/tests/esedb_test_libcerror.h +0 -50
- libesedb-20240420/tests/esedb_test_libclocale.h +0 -50
- libesedb-20240420/tests/esedb_test_libcnotify.h +0 -50
- libesedb-20240420/tests/esedb_test_libesedb.h +0 -30
- libesedb-20240420/tests/esedb_test_libfcache.h +0 -50
- libesedb-20240420/tests/esedb_test_libfdata.h +0 -54
- libesedb-20240420/tests/esedb_test_libuna.h +0 -60
- libesedb-20240420/tests/esedb_test_long_value.c +0 -134
- libesedb-20240420/tests/esedb_test_macros.h +0 -257
- libesedb-20240420/tests/esedb_test_memory.c +0 -177
- libesedb-20240420/tests/esedb_test_memory.h +0 -52
- libesedb-20240420/tests/esedb_test_multi_value.c +0 -150
- libesedb-20240420/tests/esedb_test_notify.c +0 -229
- libesedb-20240420/tests/esedb_test_page.c +0 -2247
- libesedb-20240420/tests/esedb_test_page_header.c +0 -960
- libesedb-20240420/tests/esedb_test_page_tree.c +0 -474
- libesedb-20240420/tests/esedb_test_page_tree_key.c +0 -812
- libesedb-20240420/tests/esedb_test_page_tree_value.c +0 -475
- libesedb-20240420/tests/esedb_test_page_value.c +0 -307
- libesedb-20240420/tests/esedb_test_record.c +0 -176
- libesedb-20240420/tests/esedb_test_root_page_header.c +0 -470
- libesedb-20240420/tests/esedb_test_space_tree.c +0 -116
- libesedb-20240420/tests/esedb_test_space_tree_value.c +0 -470
- libesedb-20240420/tests/esedb_test_support.c +0 -796
- libesedb-20240420/tests/esedb_test_table.c +0 -144
- libesedb-20240420/tests/esedb_test_table_definition.c +0 -393
- libesedb-20240420/tests/esedb_test_tools_info_handle.c +0 -299
- libesedb-20240420/tests/esedb_test_tools_output.c +0 -105
- libesedb-20240420/tests/esedb_test_tools_signal.c +0 -213
- libesedb-20240420/tests/esedb_test_tools_windows_search_compression.c +0 -488
- libesedb-20240420/tests/esedb_test_unused.h +0 -50
- libesedb-20240420/tests/pyesedb_test_file.py +0 -193
- libesedb-20240420/tests/pyesedb_test_support.py +0 -108
- libesedb-20240420/tests/test_esedbexport.sh +0 -200
- libesedb-20240420/tests/test_esedbinfo.sh +0 -146
- libesedb-20240420/tests/test_library.sh +0 -193
- libesedb-20240420/tests/test_manpage.sh +0 -98
- libesedb-20240420/tests/test_python_module.sh +0 -195
- libesedb-20240420/tests/test_runner.sh +0 -1148
- libesedb-20240420/tests/test_tools.sh +0 -193
- {libesedb-20240420 → libesedb_python-20260704}/ABOUT-NLS +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/COPYING +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/COPYING.LESSER +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/ChangeLog +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/NEWS +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/common/Makefile.am +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/compile +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/config.rpath +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/depcomp +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/dpkg/changelog.in +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/dpkg/libesedb-dev.install +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/dpkg/libesedb-python3.install +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/dpkg/libesedb-tools.install +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/dpkg/libesedb.install +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/dpkg/source/format +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/esedbtools/exchange.c +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/esedbtools/exchange.h +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/include/Makefile.am +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/install-sh +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/libbfio/Makefile.am +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/libcdata/Makefile.am +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/libcerror/Makefile.am +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/libcfile/Makefile.am +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/libclocale/Makefile.am +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/libcnotify/Makefile.am +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/libcpath/Makefile.am +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/libcsplit/Makefile.am +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/libcthreads/Makefile.am +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/libesedb/Makefile.am +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/libesedb.pc.in +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/libesedb.spec.in +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/libfcache/Makefile.am +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/libfdata/Makefile.am +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/libfdatetime/Makefile.am +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/libfguid/Makefile.am +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/libfmapi/Makefile.am +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/libfvalue/Makefile.am +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/libfwnt/Makefile.am +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/libmapidb/Makefile.am +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/libmapidb/libmapidb_database.c +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/libmapidb/libmapidb_database.h +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/libmapidb/libmapidb_definitions.h +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/libmapidb/libmapidb_error.c +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/libmapidb/libmapidb_error.h +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/libmapidb/libmapidb_extern.h +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/libmapidb/libmapidb_folder.c +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/libmapidb/libmapidb_folder.h +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/libmapidb/libmapidb_libcerror.h +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/libmapidb/libmapidb_libcnotify.h +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/libmapidb/libmapidb_support.c +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/libmapidb/libmapidb_support.h +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/libmapidb/libmapidb_types.h +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/libmapidb/libmapidb_unused.h +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/libuna/Makefile.am +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/m4/gettext.m4 +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/m4/host-cpu-c-abi.m4 +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/m4/iconv.m4 +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/m4/intlmacosx.m4 +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/m4/lib-ld.m4 +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/m4/lib-link.m4 +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/m4/lib-prefix.m4 +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/m4/nls.m4 +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/m4/po.m4 +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/m4/progtest.m4 +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/missing +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/Makefile.am +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_block_descriptor/esedb_test_block_descriptor.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_block_tree/esedb_test_block_tree.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_block_tree_node/esedb_test_block_tree_node.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_catalog/esedb_test_catalog.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_catalog_definition/esedb_test_catalog_definition.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_checksum/esedb_test_checksum.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_column/esedb_test_column.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_column_type/esedb_test_column_type.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_compression/esedb_test_compression.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_data_definition/esedb_test_data_definition.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_data_segment/esedb_test_data_segment.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_database/esedb_test_database.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_error/esedb_test_error.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_file/esedb_test_file.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_file_header/esedb_test_file_header.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_index/esedb_test_index.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_io_handle/esedb_test_io_handle.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_leaf_page_descriptor/esedb_test_leaf_page_descriptor.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_long_value/esedb_test_long_value.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_multi_value/esedb_test_multi_value.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_notify/esedb_test_notify.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_page/esedb_test_page.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_page_header/esedb_test_page_header.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_page_tree/esedb_test_page_tree.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_page_tree_key/esedb_test_page_tree_key.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_page_tree_value/esedb_test_page_tree_value.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_page_value/esedb_test_page_value.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_record/esedb_test_record.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_root_page_header/esedb_test_root_page_header.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_space_tree/esedb_test_space_tree.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_space_tree_value/esedb_test_space_tree_value.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_support/esedb_test_support.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_table/esedb_test_table.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_table_definition/esedb_test_table_definition.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_tools_info_handle/esedb_test_tools_info_handle.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_tools_output/esedb_test_tools_output.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_tools_signal/esedb_test_tools_signal.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedb_test_tools_windows_search_compression/esedb_test_tools_windows_search_compression.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedbexport/esedbexport.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/esedbinfo/esedbinfo.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libbfio/libbfio.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libcdata/libcdata.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libcerror/libcerror.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libcfile/libcfile.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libclocale/libclocale.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libcnotify/libcnotify.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libcpath/libcpath.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libcsplit/libcsplit.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libcthreads/libcthreads.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libesedb/libesedb.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libesedb.sln +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libfcache/libfcache.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libfdata/libfdata.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libfdatetime/libfdatetime.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libfguid/libfguid.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libfmapi/libfmapi.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libfvalue/libfvalue.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libfwnt/libfwnt.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libmapidb/libmapidb.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/libuna/libuna.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/msvscpp/pyesedb/pyesedb.vcproj +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/ossfuzz/Makefile.am +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/po/ChangeLog +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/po/Makefile.in.in +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/po/Makevars.in +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/po/POTFILES.in +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/po/Rules-quot +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/po/boldquot.sed +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/po/en@boldquot.header +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/po/en@quot.header +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/po/insert-header.sin +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/po/quot.sed +0 -0
- {libesedb-20240420 → libesedb_python-20260704}/po/remove-potcdate.sin +0 -0
|
File without changes
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
ACLOCAL_AMFLAGS = -I m4
|
|
2
|
+
|
|
3
|
+
SUBDIRS = \
|
|
4
|
+
include \
|
|
5
|
+
common \
|
|
6
|
+
libcerror \
|
|
7
|
+
libcthreads \
|
|
8
|
+
libcdata \
|
|
9
|
+
libclocale \
|
|
10
|
+
libcnotify \
|
|
11
|
+
libcsplit \
|
|
12
|
+
libuna \
|
|
13
|
+
libcfile \
|
|
14
|
+
libcpath \
|
|
15
|
+
libbfio \
|
|
16
|
+
libfcache \
|
|
17
|
+
libfdata \
|
|
18
|
+
libfdatetime \
|
|
19
|
+
libfguid \
|
|
20
|
+
libfvalue \
|
|
21
|
+
libfwnt \
|
|
22
|
+
libesedb \
|
|
23
|
+
libfmapi \
|
|
24
|
+
libmapidb \
|
|
25
|
+
esedbtools \
|
|
26
|
+
pyesedb \
|
|
27
|
+
po \
|
|
28
|
+
manuals \
|
|
29
|
+
tests \
|
|
30
|
+
ossfuzz \
|
|
31
|
+
msvscpp
|
|
32
|
+
|
|
33
|
+
DPKG_FILES = \
|
|
34
|
+
dpkg/changelog \
|
|
35
|
+
dpkg/changelog.in \
|
|
36
|
+
dpkg/compat \
|
|
37
|
+
dpkg/control \
|
|
38
|
+
dpkg/copyright \
|
|
39
|
+
dpkg/rules \
|
|
40
|
+
dpkg/libesedb.install \
|
|
41
|
+
dpkg/libesedb-dev.install \
|
|
42
|
+
dpkg/libesedb-python3.install \
|
|
43
|
+
dpkg/libesedb-tools.install \
|
|
44
|
+
dpkg/source/format
|
|
45
|
+
|
|
46
|
+
GETTEXT_FILES = \
|
|
47
|
+
config.rpath \
|
|
48
|
+
po/Makevars.in
|
|
49
|
+
|
|
50
|
+
PKGCONFIG_FILES = \
|
|
51
|
+
libesedb.pc.in
|
|
52
|
+
|
|
53
|
+
SETUP_PY_FILES = \
|
|
54
|
+
_build.py \
|
|
55
|
+
pyproject.toml \
|
|
56
|
+
pyproject.toml.in
|
|
57
|
+
|
|
58
|
+
SPEC_FILES = \
|
|
59
|
+
libesedb.spec \
|
|
60
|
+
libesedb.spec.in
|
|
61
|
+
|
|
62
|
+
EXTRA_DIST = \
|
|
63
|
+
$(DPKG_FILES) \
|
|
64
|
+
$(GETTEXT_FILES) \
|
|
65
|
+
$(PKGCONFIG_FILES) \
|
|
66
|
+
$(SETUP_PY_FILES) \
|
|
67
|
+
$(SPEC_FILES)
|
|
68
|
+
|
|
69
|
+
DISTCLEANFILES = \
|
|
70
|
+
config.status \
|
|
71
|
+
config.cache \
|
|
72
|
+
config.log \
|
|
73
|
+
libesedb.pc \
|
|
74
|
+
libesedb.spec \
|
|
75
|
+
Makefile \
|
|
76
|
+
Makefile.in \
|
|
77
|
+
po/Makevars
|
|
78
|
+
|
|
79
|
+
pkgconfigdir = $(libdir)/pkgconfig
|
|
80
|
+
|
|
81
|
+
pkgconfig_DATA = \
|
|
82
|
+
libesedb.pc
|
|
83
|
+
|
|
84
|
+
check-build: all
|
|
85
|
+
cd $(srcdir)/tests && $(MAKE) check-build $(AM_MAKEFLAGS)
|
|
86
|
+
|
|
87
|
+
libtool:
|
|
88
|
+
@LIBTOOL_DEPS@
|
|
89
|
+
cd $(srcdir) && $(SHELL) ./config.status --recheck
|
|
90
|
+
|
|
91
|
+
lib: library
|
|
92
|
+
|
|
93
|
+
library:
|
|
94
|
+
(cd $(srcdir)/common && $(MAKE) $(AM_MAKEFLAGS))
|
|
95
|
+
(cd $(srcdir)/libcerror && $(MAKE) $(AM_MAKEFLAGS))
|
|
96
|
+
(cd $(srcdir)/libcthreads && $(MAKE) $(AM_MAKEFLAGS))
|
|
97
|
+
(cd $(srcdir)/libcdata && $(MAKE) $(AM_MAKEFLAGS))
|
|
98
|
+
(cd $(srcdir)/libclocale && $(MAKE) $(AM_MAKEFLAGS))
|
|
99
|
+
(cd $(srcdir)/libcnotify && $(MAKE) $(AM_MAKEFLAGS))
|
|
100
|
+
(cd $(srcdir)/libcsplit && $(MAKE) $(AM_MAKEFLAGS))
|
|
101
|
+
(cd $(srcdir)/libuna && $(MAKE) $(AM_MAKEFLAGS))
|
|
102
|
+
(cd $(srcdir)/libcfile && $(MAKE) $(AM_MAKEFLAGS))
|
|
103
|
+
(cd $(srcdir)/libcpath && $(MAKE) $(AM_MAKEFLAGS))
|
|
104
|
+
(cd $(srcdir)/libbfio && $(MAKE) $(AM_MAKEFLAGS))
|
|
105
|
+
(cd $(srcdir)/libfcache && $(MAKE) $(AM_MAKEFLAGS))
|
|
106
|
+
(cd $(srcdir)/libfdata && $(MAKE) $(AM_MAKEFLAGS))
|
|
107
|
+
(cd $(srcdir)/libfdatetime && $(MAKE) $(AM_MAKEFLAGS))
|
|
108
|
+
(cd $(srcdir)/libfguid && $(MAKE) $(AM_MAKEFLAGS))
|
|
109
|
+
(cd $(srcdir)/libfvalue && $(MAKE) $(AM_MAKEFLAGS))
|
|
110
|
+
(cd $(srcdir)/libfwnt && $(MAKE) $(AM_MAKEFLAGS))
|
|
111
|
+
(cd $(srcdir)/libesedb && $(MAKE) $(AM_MAKEFLAGS))
|
|
112
|
+
(cd $(srcdir)/po && $(MAKE) $(AM_MAKEFLAGS))
|
|
113
|
+
|