libevtx-python 20251118__tar.gz → 20260705__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.
- libevtx_python-20260705/AUTHORS +4 -0
- libevtx_python-20260705/INSTALL +368 -0
- libevtx_python-20260705/Makefile.am +117 -0
- libevtx_python-20260705/Makefile.in +1288 -0
- libevtx_python-20260705/PKG-INFO +33 -0
- libevtx_python-20260705/README +16 -0
- libevtx_python-20260705/_build.py +275 -0
- libevtx_python-20260705/acinclude.m4 +49 -0
- libevtx_python-20260705/aclocal.m4 +1554 -0
- libevtx_python-20260705/common/Makefile.in +842 -0
- libevtx_python-20260705/common/byte_stream.h +312 -0
- libevtx_python-20260705/common/common.h +43 -0
- libevtx_python-20260705/common/config.h +686 -0
- libevtx_python-20260705/common/config.h.in +685 -0
- libevtx_python-20260705/common/config_borlandc.h +26 -0
- libevtx_python-20260705/common/config_msc.h +34 -0
- libevtx_python-20260705/common/config_winapi.h +97 -0
- libevtx_python-20260705/common/file_stream.h +151 -0
- libevtx_python-20260705/common/memory.h +129 -0
- libevtx_python-20260705/common/narrow_string.h +187 -0
- libevtx_python-20260705/common/system_string.h +154 -0
- libevtx_python-20260705/common/types.h +392 -0
- libevtx_python-20260705/common/types.h.in +392 -0
- libevtx_python-20260705/common/wide_string.h +175 -0
- libevtx_python-20260705/compile +348 -0
- libevtx_python-20260705/config.guess +1754 -0
- libevtx_python-20260705/config.sub +1890 -0
- libevtx_python-20260705/configure +75709 -0
- libevtx_python-20260705/configure.ac +287 -0
- libevtx_python-20260705/depcomp +791 -0
- libevtx_python-20260705/dpkg/changelog +5 -0
- libevtx_python-20260705/dpkg/compat +1 -0
- libevtx_python-20260705/dpkg/control +65 -0
- libevtx_python-20260705/dpkg/copyright +25 -0
- libevtx_python-20260705/dpkg/rules +31 -0
- libevtx_python-20260705/evtxtools/Makefile.am +139 -0
- libevtx_python-20260705/evtxtools/Makefile.in +1131 -0
- libevtx_python-20260705/evtxtools/evtxexport.c +625 -0
- libevtx_python-20260705/evtxtools/evtxinfo.c +355 -0
- libevtx_python-20260705/evtxtools/evtxinput.c +251 -0
- libevtx_python-20260705/evtxtools/evtxinput.h +62 -0
- libevtx_python-20260705/evtxtools/evtxtools_getopt.c +572 -0
- libevtx_python-20260705/evtxtools/evtxtools_getopt.h +106 -0
- libevtx_python-20260705/evtxtools/evtxtools_i18n.h +48 -0
- libevtx_python-20260705/evtxtools/evtxtools_libbfio.h +58 -0
- libevtx_python-20260705/evtxtools/evtxtools_libcdirectory.h +50 -0
- libevtx_python-20260705/evtxtools/evtxtools_libcerror.h +50 -0
- libevtx_python-20260705/evtxtools/evtxtools_libclocale.h +50 -0
- libevtx_python-20260705/evtxtools/evtxtools_libcnotify.h +50 -0
- libevtx_python-20260705/evtxtools/evtxtools_libcpath.h +48 -0
- libevtx_python-20260705/evtxtools/evtxtools_libcsplit.h +52 -0
- libevtx_python-20260705/evtxtools/evtxtools_libevtx.h +30 -0
- libevtx_python-20260705/evtxtools/evtxtools_libexe.h +50 -0
- libevtx_python-20260705/evtxtools/evtxtools_libfcache.h +50 -0
- libevtx_python-20260705/evtxtools/evtxtools_libfdatetime.h +56 -0
- libevtx_python-20260705/evtxtools/evtxtools_libfguid.h +49 -0
- libevtx_python-20260705/evtxtools/evtxtools_libfvalue.h +59 -0
- libevtx_python-20260705/evtxtools/evtxtools_libfwevt.h +62 -0
- libevtx_python-20260705/evtxtools/evtxtools_libfwnt.h +58 -0
- libevtx_python-20260705/evtxtools/evtxtools_libregf.h +52 -0
- libevtx_python-20260705/evtxtools/evtxtools_libuna.h +60 -0
- libevtx_python-20260705/evtxtools/evtxtools_libwrc.h +57 -0
- libevtx_python-20260705/evtxtools/evtxtools_output.c +200 -0
- libevtx_python-20260705/evtxtools/evtxtools_output.h +55 -0
- libevtx_python-20260705/evtxtools/evtxtools_signal.c +262 -0
- libevtx_python-20260705/evtxtools/evtxtools_signal.h +72 -0
- libevtx_python-20260705/evtxtools/evtxtools_system_split_string.h +73 -0
- libevtx_python-20260705/evtxtools/evtxtools_unused.h +50 -0
- libevtx_python-20260705/evtxtools/evtxtools_wide_string.c +69 -0
- libevtx_python-20260705/evtxtools/evtxtools_wide_string.h +54 -0
- libevtx_python-20260705/evtxtools/export_handle.c +3903 -0
- libevtx_python-20260705/evtxtools/export_handle.h +288 -0
- libevtx_python-20260705/evtxtools/info_handle.c +604 -0
- libevtx_python-20260705/evtxtools/info_handle.h +101 -0
- libevtx_python-20260705/evtxtools/log_handle.c +276 -0
- libevtx_python-20260705/evtxtools/log_handle.h +71 -0
- libevtx_python-20260705/evtxtools/message_handle.c +4120 -0
- libevtx_python-20260705/evtxtools/message_handle.h +304 -0
- libevtx_python-20260705/evtxtools/message_string.c +285 -0
- libevtx_python-20260705/evtxtools/message_string.h +71 -0
- libevtx_python-20260705/evtxtools/path_handle.c +407 -0
- libevtx_python-20260705/evtxtools/path_handle.h +69 -0
- libevtx_python-20260705/evtxtools/registry_file.c +903 -0
- libevtx_python-20260705/evtxtools/registry_file.h +124 -0
- libevtx_python-20260705/evtxtools/resource_file.c +2591 -0
- libevtx_python-20260705/evtxtools/resource_file.h +192 -0
- libevtx_python-20260705/include/Makefile.in +904 -0
- libevtx_python-20260705/include/libevtx/codepage.h +122 -0
- libevtx_python-20260705/include/libevtx/definitions.h +73 -0
- libevtx_python-20260705/include/libevtx/definitions.h.in +73 -0
- libevtx_python-20260705/include/libevtx/error.h +291 -0
- libevtx_python-20260705/include/libevtx/extern.h +47 -0
- libevtx_python-20260705/include/libevtx/features.h +50 -0
- libevtx_python-20260705/include/libevtx/features.h.in +50 -0
- libevtx_python-20260705/include/libevtx/types.h +213 -0
- libevtx_python-20260705/include/libevtx/types.h.in +213 -0
- libevtx_python-20260705/include/libevtx.h +868 -0
- libevtx_python-20260705/include/libevtx.h.in +868 -0
- libevtx_python-20260705/install-sh +541 -0
- libevtx_python-20260705/libbfio/Makefile.in +1005 -0
- libevtx_python-20260705/libbfio/libbfio_codepage.h +90 -0
- libevtx_python-20260705/libbfio/libbfio_definitions.h +89 -0
- libevtx_python-20260705/libbfio/libbfio_error.c +111 -0
- libevtx_python-20260705/libbfio/libbfio_error.h +74 -0
- libevtx_python-20260705/libbfio/libbfio_extern.h +53 -0
- libevtx_python-20260705/libbfio/libbfio_file.c +444 -0
- libevtx_python-20260705/libbfio/libbfio_file.h +90 -0
- libevtx_python-20260705/libbfio/libbfio_file_io_handle.c +1198 -0
- libevtx_python-20260705/libbfio/libbfio_file_io_handle.h +152 -0
- libevtx_python-20260705/libbfio/libbfio_file_pool.c +494 -0
- libevtx_python-20260705/libbfio/libbfio_file_pool.h +81 -0
- libevtx_python-20260705/libbfio/libbfio_file_range.c +468 -0
- libevtx_python-20260705/libbfio/libbfio_file_range.h +104 -0
- libevtx_python-20260705/libbfio/libbfio_file_range_io_handle.c +1158 -0
- libevtx_python-20260705/libbfio/libbfio_file_range_io_handle.h +160 -0
- libevtx_python-20260705/libbfio/libbfio_handle.c +2708 -0
- libevtx_python-20260705/libbfio/libbfio_handle.h +363 -0
- libevtx_python-20260705/libbfio/libbfio_libcdata.h +54 -0
- libevtx_python-20260705/libbfio/libbfio_libcerror.h +50 -0
- libevtx_python-20260705/libbfio/libbfio_libcfile.h +50 -0
- libevtx_python-20260705/libbfio/libbfio_libclocale.h +50 -0
- libevtx_python-20260705/libbfio/libbfio_libcpath.h +48 -0
- libevtx_python-20260705/libbfio/libbfio_libcthreads.h +64 -0
- libevtx_python-20260705/libbfio/libbfio_libuna.h +60 -0
- libevtx_python-20260705/libbfio/libbfio_memory_range.c +205 -0
- libevtx_python-20260705/libbfio/libbfio_memory_range.h +60 -0
- libevtx_python-20260705/libbfio/libbfio_memory_range_io_handle.c +871 -0
- libevtx_python-20260705/libbfio/libbfio_memory_range_io_handle.h +129 -0
- libevtx_python-20260705/libbfio/libbfio_pool.c +3523 -0
- libevtx_python-20260705/libbfio/libbfio_pool.h +275 -0
- libevtx_python-20260705/libbfio/libbfio_support.c +93 -0
- libevtx_python-20260705/libbfio/libbfio_support.h +58 -0
- libevtx_python-20260705/libbfio/libbfio_system_string.c +1017 -0
- libevtx_python-20260705/libbfio/libbfio_system_string.h +95 -0
- libevtx_python-20260705/libbfio/libbfio_types.h +49 -0
- libevtx_python-20260705/libbfio/libbfio_unused.h +44 -0
- libevtx_python-20260705/libcdata/Makefile.in +984 -0
- libevtx_python-20260705/libcdata/libcdata_array.c +2015 -0
- libevtx_python-20260705/libcdata/libcdata_array.h +200 -0
- libevtx_python-20260705/libcdata/libcdata_btree.c +964 -0
- libevtx_python-20260705/libcdata/libcdata_btree.h +141 -0
- libevtx_python-20260705/libcdata/libcdata_btree_node.c +1607 -0
- libevtx_python-20260705/libcdata/libcdata_btree_node.h +101 -0
- libevtx_python-20260705/libcdata/libcdata_btree_values_list.c +217 -0
- libevtx_python-20260705/libcdata/libcdata_btree_values_list.h +55 -0
- libevtx_python-20260705/libcdata/libcdata_definitions.h +81 -0
- libevtx_python-20260705/libcdata/libcdata_error.c +111 -0
- libevtx_python-20260705/libcdata/libcdata_error.h +74 -0
- libevtx_python-20260705/libcdata/libcdata_extern.h +53 -0
- libevtx_python-20260705/libcdata/libcdata_libcerror.h +50 -0
- libevtx_python-20260705/libcdata/libcdata_libcthreads.h +64 -0
- libevtx_python-20260705/libcdata/libcdata_list.c +2906 -0
- libevtx_python-20260705/libcdata/libcdata_list.h +235 -0
- libevtx_python-20260705/libcdata/libcdata_list_element.c +926 -0
- libevtx_python-20260705/libcdata/libcdata_list_element.h +142 -0
- libevtx_python-20260705/libcdata/libcdata_range_list.c +4922 -0
- libevtx_python-20260705/libcdata/libcdata_range_list.h +382 -0
- libevtx_python-20260705/libcdata/libcdata_range_list_value.c +429 -0
- libevtx_python-20260705/libcdata/libcdata_range_list_value.h +100 -0
- libevtx_python-20260705/libcdata/libcdata_support.c +39 -0
- libevtx_python-20260705/libcdata/libcdata_support.h +47 -0
- libevtx_python-20260705/libcdata/libcdata_tree_node.c +4271 -0
- libevtx_python-20260705/libcdata/libcdata_tree_node.h +308 -0
- libevtx_python-20260705/libcdata/libcdata_types.h +57 -0
- libevtx_python-20260705/libcdata/libcdata_unused.h +44 -0
- libevtx_python-20260705/libcdirectory/Makefile.in +956 -0
- libevtx_python-20260705/libcdirectory/libcdirectory_definitions.h +68 -0
- libevtx_python-20260705/libcdirectory/libcdirectory_directory.c +1967 -0
- libevtx_python-20260705/libcdirectory/libcdirectory_directory.h +127 -0
- libevtx_python-20260705/libcdirectory/libcdirectory_directory_entry.c +954 -0
- libevtx_python-20260705/libcdirectory/libcdirectory_directory_entry.h +121 -0
- libevtx_python-20260705/libcdirectory/libcdirectory_error.c +111 -0
- libevtx_python-20260705/libcdirectory/libcdirectory_error.h +74 -0
- libevtx_python-20260705/libcdirectory/libcdirectory_extern.h +53 -0
- libevtx_python-20260705/libcdirectory/libcdirectory_libcerror.h +50 -0
- libevtx_python-20260705/libcdirectory/libcdirectory_libclocale.h +50 -0
- libevtx_python-20260705/libcdirectory/libcdirectory_libuna.h +60 -0
- libevtx_python-20260705/libcdirectory/libcdirectory_support.c +93 -0
- libevtx_python-20260705/libcdirectory/libcdirectory_support.h +58 -0
- libevtx_python-20260705/libcdirectory/libcdirectory_system_string.c +1017 -0
- libevtx_python-20260705/libcdirectory/libcdirectory_system_string.h +95 -0
- libevtx_python-20260705/libcdirectory/libcdirectory_types.h +49 -0
- libevtx_python-20260705/libcdirectory/libcdirectory_unused.h +44 -0
- libevtx_python-20260705/libcdirectory/libcdirectory_wide_string.c +69 -0
- libevtx_python-20260705/libcdirectory/libcdirectory_wide_string.h +54 -0
- libevtx_python-20260705/libcerror/Makefile.in +926 -0
- libevtx_python-20260705/libcerror/libcerror_definitions.h +326 -0
- libevtx_python-20260705/libcerror/libcerror_error.c +827 -0
- libevtx_python-20260705/libcerror/libcerror_error.h +125 -0
- libevtx_python-20260705/libcerror/libcerror_extern.h +53 -0
- libevtx_python-20260705/libcerror/libcerror_support.c +39 -0
- libevtx_python-20260705/libcerror/libcerror_support.h +47 -0
- libevtx_python-20260705/libcerror/libcerror_system.c +569 -0
- libevtx_python-20260705/libcerror/libcerror_system.h +78 -0
- libevtx_python-20260705/libcerror/libcerror_types.h +51 -0
- libevtx_python-20260705/libcerror/libcerror_unused.h +44 -0
- libevtx_python-20260705/libcfile/Makefile.in +953 -0
- libevtx_python-20260705/libcfile/libcfile_definitions.h +101 -0
- libevtx_python-20260705/libcfile/libcfile_error.c +111 -0
- libevtx_python-20260705/libcfile/libcfile_error.h +74 -0
- libevtx_python-20260705/libcfile/libcfile_extern.h +53 -0
- libevtx_python-20260705/libcfile/libcfile_file.c +5022 -0
- libevtx_python-20260705/libcfile/libcfile_file.h +277 -0
- libevtx_python-20260705/libcfile/libcfile_libcerror.h +50 -0
- libevtx_python-20260705/libcfile/libcfile_libclocale.h +50 -0
- libevtx_python-20260705/libcfile/libcfile_libcnotify.h +50 -0
- libevtx_python-20260705/libcfile/libcfile_libuna.h +60 -0
- libevtx_python-20260705/libcfile/libcfile_notify.c +120 -0
- libevtx_python-20260705/libcfile/libcfile_notify.h +63 -0
- libevtx_python-20260705/libcfile/libcfile_support.c +1171 -0
- libevtx_python-20260705/libcfile/libcfile_support.h +98 -0
- libevtx_python-20260705/libcfile/libcfile_system_string.c +1017 -0
- libevtx_python-20260705/libcfile/libcfile_system_string.h +95 -0
- libevtx_python-20260705/libcfile/libcfile_types.h +47 -0
- libevtx_python-20260705/libcfile/libcfile_unused.h +44 -0
- libevtx_python-20260705/libcfile/libcfile_winapi.c +815 -0
- libevtx_python-20260705/libcfile/libcfile_winapi.h +122 -0
- libevtx_python-20260705/libclocale/Makefile.in +936 -0
- libevtx_python-20260705/libclocale/libclocale_codepage.c +950 -0
- libevtx_python-20260705/libclocale/libclocale_codepage.h +73 -0
- libevtx_python-20260705/libclocale/libclocale_definitions.h +106 -0
- libevtx_python-20260705/libclocale/libclocale_extern.h +53 -0
- libevtx_python-20260705/libclocale/libclocale_libcerror.h +50 -0
- libevtx_python-20260705/libclocale/libclocale_locale.c +494 -0
- libevtx_python-20260705/libclocale/libclocale_locale.h +66 -0
- libevtx_python-20260705/libclocale/libclocale_support.c +130 -0
- libevtx_python-20260705/libclocale/libclocale_support.h +55 -0
- libevtx_python-20260705/libclocale/libclocale_unused.h +44 -0
- libevtx_python-20260705/libclocale/libclocale_wide_string.c +69 -0
- libevtx_python-20260705/libclocale/libclocale_wide_string.h +54 -0
- libevtx_python-20260705/libcnotify/Makefile.in +934 -0
- libevtx_python-20260705/libcnotify/libcnotify_definitions.h +54 -0
- libevtx_python-20260705/libcnotify/libcnotify_extern.h +53 -0
- libevtx_python-20260705/libcnotify/libcnotify_libcerror.h +50 -0
- libevtx_python-20260705/libcnotify/libcnotify_print.c +386 -0
- libevtx_python-20260705/libcnotify/libcnotify_print.h +68 -0
- libevtx_python-20260705/libcnotify/libcnotify_stream.c +182 -0
- libevtx_python-20260705/libcnotify/libcnotify_stream.h +59 -0
- libevtx_python-20260705/libcnotify/libcnotify_support.c +39 -0
- libevtx_python-20260705/libcnotify/libcnotify_support.h +49 -0
- libevtx_python-20260705/libcnotify/libcnotify_unused.h +44 -0
- libevtx_python-20260705/libcnotify/libcnotify_verbose.c +38 -0
- libevtx_python-20260705/libcnotify/libcnotify_verbose.h +46 -0
- libevtx_python-20260705/libcpath/Makefile.in +938 -0
- libevtx_python-20260705/libcpath/libcpath_definitions.h +79 -0
- libevtx_python-20260705/libcpath/libcpath_error.c +111 -0
- libevtx_python-20260705/libcpath/libcpath_error.h +74 -0
- libevtx_python-20260705/libcpath/libcpath_extern.h +53 -0
- libevtx_python-20260705/libcpath/libcpath_libcerror.h +50 -0
- libevtx_python-20260705/libcpath/libcpath_libclocale.h +50 -0
- libevtx_python-20260705/libcpath/libcpath_libcsplit.h +52 -0
- libevtx_python-20260705/libcpath/libcpath_libuna.h +60 -0
- libevtx_python-20260705/libcpath/libcpath_path.c +7508 -0
- libevtx_python-20260705/libcpath/libcpath_path.h +293 -0
- libevtx_python-20260705/libcpath/libcpath_support.c +93 -0
- libevtx_python-20260705/libcpath/libcpath_support.h +58 -0
- libevtx_python-20260705/libcpath/libcpath_system_string.c +1017 -0
- libevtx_python-20260705/libcpath/libcpath_system_string.h +95 -0
- libevtx_python-20260705/libcpath/libcpath_unused.h +44 -0
- libevtx_python-20260705/libcsplit/Makefile.in +951 -0
- libevtx_python-20260705/libcsplit/libcsplit_definitions.h +47 -0
- libevtx_python-20260705/libcsplit/libcsplit_error.c +111 -0
- libevtx_python-20260705/libcsplit/libcsplit_error.h +74 -0
- libevtx_python-20260705/libcsplit/libcsplit_extern.h +53 -0
- libevtx_python-20260705/libcsplit/libcsplit_libcerror.h +50 -0
- libevtx_python-20260705/libcsplit/libcsplit_narrow_split_string.c +547 -0
- libevtx_python-20260705/libcsplit/libcsplit_narrow_split_string.h +107 -0
- libevtx_python-20260705/libcsplit/libcsplit_narrow_string.c +288 -0
- libevtx_python-20260705/libcsplit/libcsplit_narrow_string.h +49 -0
- libevtx_python-20260705/libcsplit/libcsplit_support.c +39 -0
- libevtx_python-20260705/libcsplit/libcsplit_support.h +47 -0
- libevtx_python-20260705/libcsplit/libcsplit_types.h +49 -0
- libevtx_python-20260705/libcsplit/libcsplit_unused.h +44 -0
- libevtx_python-20260705/libcsplit/libcsplit_wide_split_string.c +551 -0
- libevtx_python-20260705/libcsplit/libcsplit_wide_split_string.h +111 -0
- libevtx_python-20260705/libcsplit/libcsplit_wide_string.c +292 -0
- libevtx_python-20260705/libcsplit/libcsplit_wide_string.h +53 -0
- libevtx_python-20260705/libcthreads/Makefile.in +986 -0
- libevtx_python-20260705/libcthreads/libcthreads_condition.c +735 -0
- libevtx_python-20260705/libcthreads/libcthreads_condition.h +120 -0
- libevtx_python-20260705/libcthreads/libcthreads_definitions.h +84 -0
- libevtx_python-20260705/libcthreads/libcthreads_error.c +111 -0
- libevtx_python-20260705/libcthreads/libcthreads_error.h +74 -0
- libevtx_python-20260705/libcthreads/libcthreads_extern.h +53 -0
- libevtx_python-20260705/libcthreads/libcthreads_libcerror.h +50 -0
- libevtx_python-20260705/libcthreads/libcthreads_lock.c +391 -0
- libevtx_python-20260705/libcthreads/libcthreads_lock.h +88 -0
- libevtx_python-20260705/libcthreads/libcthreads_mutex.c +601 -0
- libevtx_python-20260705/libcthreads/libcthreads_mutex.h +98 -0
- libevtx_python-20260705/libcthreads/libcthreads_queue.c +1150 -0
- libevtx_python-20260705/libcthreads/libcthreads_queue.h +136 -0
- libevtx_python-20260705/libcthreads/libcthreads_read_write_lock.c +690 -0
- libevtx_python-20260705/libcthreads/libcthreads_read_write_lock.h +119 -0
- libevtx_python-20260705/libcthreads/libcthreads_repeating_thread.c +683 -0
- libevtx_python-20260705/libcthreads/libcthreads_repeating_thread.h +123 -0
- libevtx_python-20260705/libcthreads/libcthreads_support.c +39 -0
- libevtx_python-20260705/libcthreads/libcthreads_support.h +47 -0
- libevtx_python-20260705/libcthreads/libcthreads_thread.c +411 -0
- libevtx_python-20260705/libcthreads/libcthreads_thread.h +95 -0
- libevtx_python-20260705/libcthreads/libcthreads_thread_attributes.c +149 -0
- libevtx_python-20260705/libcthreads/libcthreads_thread_attributes.h +78 -0
- libevtx_python-20260705/libcthreads/libcthreads_thread_pool.c +1725 -0
- libevtx_python-20260705/libcthreads/libcthreads_thread_pool.h +177 -0
- libevtx_python-20260705/libcthreads/libcthreads_types.h +63 -0
- libevtx_python-20260705/libcthreads/libcthreads_unused.h +44 -0
- libevtx_python-20260705/libevtx/Makefile.in +1108 -0
- libevtx_python-20260705/libevtx/evtx_chunk.h +104 -0
- libevtx_python-20260705/libevtx/evtx_event_record.h +64 -0
- libevtx_python-20260705/libevtx/evtx_file_header.h +104 -0
- libevtx_python-20260705/libevtx/libevtx.c +84 -0
- libevtx_python-20260705/libevtx/libevtx.rc +38 -0
- libevtx_python-20260705/libevtx/libevtx.rc.in +38 -0
- libevtx_python-20260705/libevtx/libevtx_byte_stream.c +104 -0
- libevtx_python-20260705/libevtx/libevtx_byte_stream.h +44 -0
- libevtx_python-20260705/libevtx/libevtx_checksum.c +200 -0
- libevtx_python-20260705/libevtx/libevtx_checksum.h +56 -0
- libevtx_python-20260705/libevtx/libevtx_chunk.c +1163 -0
- libevtx_python-20260705/libevtx/libevtx_chunk.h +109 -0
- libevtx_python-20260705/libevtx/libevtx_chunks_table.c +446 -0
- libevtx_python-20260705/libevtx/libevtx_chunks_table.h +83 -0
- libevtx_python-20260705/libevtx/libevtx_codepage.c +107 -0
- libevtx_python-20260705/libevtx/libevtx_codepage.h +116 -0
- libevtx_python-20260705/libevtx/libevtx_debug.c +256 -0
- libevtx_python-20260705/libevtx/libevtx_debug.h +55 -0
- libevtx_python-20260705/libevtx/libevtx_definitions.h +207 -0
- libevtx_python-20260705/libevtx/libevtx_definitions.h.in +207 -0
- libevtx_python-20260705/libevtx/libevtx_error.c +111 -0
- libevtx_python-20260705/libevtx/libevtx_error.h +74 -0
- libevtx_python-20260705/libevtx/libevtx_extern.h +53 -0
- libevtx_python-20260705/libevtx/libevtx_file.c +2286 -0
- libevtx_python-20260705/libevtx/libevtx_file.h +212 -0
- libevtx_python-20260705/libevtx/libevtx_i18n.c +65 -0
- libevtx_python-20260705/libevtx/libevtx_i18n.h +55 -0
- libevtx_python-20260705/libevtx/libevtx_io_handle.c +584 -0
- libevtx_python-20260705/libevtx/libevtx_io_handle.h +127 -0
- libevtx_python-20260705/libevtx/libevtx_libbfio.h +58 -0
- libevtx_python-20260705/libevtx/libevtx_libcdata.h +54 -0
- libevtx_python-20260705/libevtx/libevtx_libcerror.h +50 -0
- libevtx_python-20260705/libevtx/libevtx_libclocale.h +50 -0
- libevtx_python-20260705/libevtx/libevtx_libcnotify.h +50 -0
- libevtx_python-20260705/libevtx/libevtx_libfcache.h +50 -0
- libevtx_python-20260705/libevtx/libevtx_libfdata.h +54 -0
- libevtx_python-20260705/libevtx/libevtx_libfdatetime.h +56 -0
- libevtx_python-20260705/libevtx/libevtx_libfguid.h +49 -0
- libevtx_python-20260705/libevtx/libevtx_libfwevt.h +62 -0
- libevtx_python-20260705/libevtx/libevtx_libuna.h +60 -0
- libevtx_python-20260705/libevtx/libevtx_notify.c +120 -0
- libevtx_python-20260705/libevtx/libevtx_notify.h +63 -0
- libevtx_python-20260705/libevtx/libevtx_record.c +2079 -0
- libevtx_python-20260705/libevtx/libevtx_record.h +337 -0
- libevtx_python-20260705/libevtx/libevtx_record_values.c +6312 -0
- libevtx_python-20260705/libevtx/libevtx_record_values.h +388 -0
- libevtx_python-20260705/libevtx/libevtx_support.c +429 -0
- libevtx_python-20260705/libevtx/libevtx_support.h +82 -0
- libevtx_python-20260705/libevtx/libevtx_template_definition.c +359 -0
- libevtx_python-20260705/libevtx/libevtx_template_definition.h +80 -0
- libevtx_python-20260705/libevtx/libevtx_types.h +56 -0
- libevtx_python-20260705/libevtx/libevtx_unused.h +44 -0
- libevtx_python-20260705/libevtx.spec +100 -0
- libevtx_python-20260705/libexe/Makefile.in +1051 -0
- libevtx_python-20260705/libexe/exe_file_header.h +508 -0
- libevtx_python-20260705/libexe/exe_le_header.h +52 -0
- libevtx_python-20260705/libexe/exe_mz_header.h +124 -0
- libevtx_python-20260705/libexe/exe_ne_header.h +56 -0
- libevtx_python-20260705/libexe/exe_pe_header.h +48 -0
- libevtx_python-20260705/libexe/exe_section_table.h +93 -0
- libevtx_python-20260705/libexe/libexe_codepage.h +90 -0
- libevtx_python-20260705/libexe/libexe_coff_header.c +358 -0
- libevtx_python-20260705/libexe/libexe_coff_header.h +77 -0
- libevtx_python-20260705/libexe/libexe_coff_optional_header.c +1257 -0
- libevtx_python-20260705/libexe/libexe_coff_optional_header.h +72 -0
- libevtx_python-20260705/libexe/libexe_data_directory_descriptor.h +52 -0
- libevtx_python-20260705/libexe/libexe_debug.c +532 -0
- libevtx_python-20260705/libexe/libexe_debug.h +67 -0
- libevtx_python-20260705/libexe/libexe_debug_data.c +246 -0
- libevtx_python-20260705/libexe/libexe_debug_data.h +64 -0
- libevtx_python-20260705/libexe/libexe_definitions.h +163 -0
- libevtx_python-20260705/libexe/libexe_error.c +111 -0
- libevtx_python-20260705/libexe/libexe_error.h +74 -0
- libevtx_python-20260705/libexe/libexe_export_table.c +248 -0
- libevtx_python-20260705/libexe/libexe_export_table.h +64 -0
- libevtx_python-20260705/libexe/libexe_extern.h +53 -0
- libevtx_python-20260705/libexe/libexe_file.c +1693 -0
- libevtx_python-20260705/libexe/libexe_file.h +165 -0
- libevtx_python-20260705/libexe/libexe_import_table.c +248 -0
- libevtx_python-20260705/libexe/libexe_import_table.h +64 -0
- libevtx_python-20260705/libexe/libexe_io_handle.c +1272 -0
- libevtx_python-20260705/libexe/libexe_io_handle.h +142 -0
- libevtx_python-20260705/libexe/libexe_le_header.c +297 -0
- libevtx_python-20260705/libexe/libexe_le_header.h +69 -0
- libevtx_python-20260705/libexe/libexe_libbfio.h +58 -0
- libevtx_python-20260705/libexe/libexe_libcdata.h +54 -0
- libevtx_python-20260705/libexe/libexe_libcerror.h +50 -0
- libevtx_python-20260705/libexe/libexe_libclocale.h +50 -0
- libevtx_python-20260705/libexe/libexe_libcnotify.h +50 -0
- libevtx_python-20260705/libexe/libexe_libfcache.h +50 -0
- libevtx_python-20260705/libexe/libexe_libfdata.h +54 -0
- libevtx_python-20260705/libexe/libexe_libfdatetime.h +56 -0
- libevtx_python-20260705/libexe/libexe_libuna.h +60 -0
- libevtx_python-20260705/libexe/libexe_mz_header.c +440 -0
- libevtx_python-20260705/libexe/libexe_mz_header.h +69 -0
- libevtx_python-20260705/libexe/libexe_ne_header.c +297 -0
- libevtx_python-20260705/libexe/libexe_ne_header.h +69 -0
- libevtx_python-20260705/libexe/libexe_notify.c +120 -0
- libevtx_python-20260705/libexe/libexe_notify.h +63 -0
- libevtx_python-20260705/libexe/libexe_section.c +996 -0
- libevtx_python-20260705/libexe/libexe_section.h +164 -0
- libevtx_python-20260705/libexe/libexe_section_descriptor.c +320 -0
- libevtx_python-20260705/libexe/libexe_section_descriptor.h +87 -0
- libevtx_python-20260705/libexe/libexe_section_io_handle.c +651 -0
- libevtx_python-20260705/libexe/libexe_section_io_handle.h +111 -0
- libevtx_python-20260705/libexe/libexe_support.c +430 -0
- libevtx_python-20260705/libexe/libexe_support.h +82 -0
- libevtx_python-20260705/libexe/libexe_types.h +49 -0
- libevtx_python-20260705/libexe/libexe_unused.h +44 -0
- libevtx_python-20260705/libfcache/Makefile.in +947 -0
- libevtx_python-20260705/libfcache/libfcache_cache.c +1118 -0
- libevtx_python-20260705/libfcache/libfcache_cache.h +149 -0
- libevtx_python-20260705/libfcache/libfcache_cache_value.c +502 -0
- libevtx_python-20260705/libfcache/libfcache_cache_value.h +132 -0
- libevtx_python-20260705/libfcache/libfcache_date_time.c +92 -0
- libevtx_python-20260705/libfcache/libfcache_date_time.h +45 -0
- libevtx_python-20260705/libfcache/libfcache_definitions.h +58 -0
- libevtx_python-20260705/libfcache/libfcache_error.c +111 -0
- libevtx_python-20260705/libfcache/libfcache_error.h +74 -0
- libevtx_python-20260705/libfcache/libfcache_extern.h +40 -0
- libevtx_python-20260705/libfcache/libfcache_libcdata.h +54 -0
- libevtx_python-20260705/libfcache/libfcache_libcerror.h +50 -0
- libevtx_python-20260705/libfcache/libfcache_support.c +41 -0
- libevtx_python-20260705/libfcache/libfcache_support.h +47 -0
- libevtx_python-20260705/libfcache/libfcache_types.h +49 -0
- libevtx_python-20260705/libfcache/libfcache_unused.h +44 -0
- libevtx_python-20260705/libfdata/Makefile.in +1000 -0
- libevtx_python-20260705/libfdata/libfdata_area.c +1482 -0
- libevtx_python-20260705/libfdata/libfdata_area.h +278 -0
- libevtx_python-20260705/libfdata/libfdata_cache.c +59 -0
- libevtx_python-20260705/libfdata/libfdata_cache.h +56 -0
- libevtx_python-20260705/libfdata/libfdata_definitions.h +249 -0
- libevtx_python-20260705/libfdata/libfdata_error.c +111 -0
- libevtx_python-20260705/libfdata/libfdata_error.h +74 -0
- libevtx_python-20260705/libfdata/libfdata_extern.h +40 -0
- libevtx_python-20260705/libfdata/libfdata_libcdata.h +54 -0
- libevtx_python-20260705/libfdata/libfdata_libcerror.h +50 -0
- libevtx_python-20260705/libfdata/libfdata_libcnotify.h +50 -0
- libevtx_python-20260705/libfdata/libfdata_libfcache.h +50 -0
- libevtx_python-20260705/libfdata/libfdata_list.c +4426 -0
- libevtx_python-20260705/libfdata/libfdata_list.h +452 -0
- libevtx_python-20260705/libfdata/libfdata_list_element.c +824 -0
- libevtx_python-20260705/libfdata/libfdata_list_element.h +159 -0
- libevtx_python-20260705/libfdata/libfdata_mapped_range.c +312 -0
- libevtx_python-20260705/libfdata/libfdata_mapped_range.h +77 -0
- libevtx_python-20260705/libfdata/libfdata_notify.c +120 -0
- libevtx_python-20260705/libfdata/libfdata_notify.h +63 -0
- libevtx_python-20260705/libfdata/libfdata_range.c +358 -0
- libevtx_python-20260705/libfdata/libfdata_range.h +94 -0
- libevtx_python-20260705/libfdata/libfdata_range_list.c +1196 -0
- libevtx_python-20260705/libfdata/libfdata_range_list.h +214 -0
- libevtx_python-20260705/libfdata/libfdata_segments_array.c +914 -0
- libevtx_python-20260705/libfdata/libfdata_segments_array.h +94 -0
- libevtx_python-20260705/libfdata/libfdata_stream.c +2582 -0
- libevtx_python-20260705/libfdata/libfdata_stream.h +363 -0
- libevtx_python-20260705/libfdata/libfdata_support.c +41 -0
- libevtx_python-20260705/libfdata/libfdata_support.h +47 -0
- libevtx_python-20260705/libfdata/libfdata_types.h +59 -0
- libevtx_python-20260705/libfdata/libfdata_unused.h +44 -0
- libevtx_python-20260705/libfdata/libfdata_vector.c +1932 -0
- libevtx_python-20260705/libfdata/libfdata_vector.h +295 -0
- libevtx_python-20260705/libfdatetime/Makefile.in +978 -0
- libevtx_python-20260705/libfdatetime/libfdatetime_date_time_values.c +1906 -0
- libevtx_python-20260705/libfdatetime/libfdatetime_date_time_values.h +121 -0
- libevtx_python-20260705/libfdatetime/libfdatetime_definitions.h +121 -0
- libevtx_python-20260705/libfdatetime/libfdatetime_error.c +111 -0
- libevtx_python-20260705/libfdatetime/libfdatetime_error.h +74 -0
- libevtx_python-20260705/libfdatetime/libfdatetime_extern.h +40 -0
- libevtx_python-20260705/libfdatetime/libfdatetime_fat_date_time.c +1258 -0
- libevtx_python-20260705/libfdatetime/libfdatetime_fat_date_time.h +172 -0
- libevtx_python-20260705/libfdatetime/libfdatetime_filetime.c +1465 -0
- libevtx_python-20260705/libfdatetime/libfdatetime_filetime.h +177 -0
- libevtx_python-20260705/libfdatetime/libfdatetime_floatingtime.c +1333 -0
- libevtx_python-20260705/libfdatetime/libfdatetime_floatingtime.h +168 -0
- libevtx_python-20260705/libfdatetime/libfdatetime_hfs_time.c +1329 -0
- libevtx_python-20260705/libfdatetime/libfdatetime_hfs_time.h +166 -0
- libevtx_python-20260705/libfdatetime/libfdatetime_libcerror.h +50 -0
- libevtx_python-20260705/libfdatetime/libfdatetime_nsf_timedate.c +1373 -0
- libevtx_python-20260705/libfdatetime/libfdatetime_nsf_timedate.h +177 -0
- libevtx_python-20260705/libfdatetime/libfdatetime_posix_time.c +1918 -0
- libevtx_python-20260705/libfdatetime/libfdatetime_posix_time.h +189 -0
- libevtx_python-20260705/libfdatetime/libfdatetime_support.c +41 -0
- libevtx_python-20260705/libfdatetime/libfdatetime_support.h +47 -0
- libevtx_python-20260705/libfdatetime/libfdatetime_systemtime.c +1779 -0
- libevtx_python-20260705/libfdatetime/libfdatetime_systemtime.h +180 -0
- libevtx_python-20260705/libfdatetime/libfdatetime_types.h +63 -0
- libevtx_python-20260705/libfdatetime/libfdatetime_unused.h +44 -0
- libevtx_python-20260705/libfguid/Makefile.in +928 -0
- libevtx_python-20260705/libfguid/libfguid_definitions.h +84 -0
- libevtx_python-20260705/libfguid/libfguid_error.c +111 -0
- libevtx_python-20260705/libfguid/libfguid_error.h +74 -0
- libevtx_python-20260705/libfguid/libfguid_extern.h +40 -0
- libevtx_python-20260705/libfguid/libfguid_identifier.c +2524 -0
- libevtx_python-20260705/libfguid/libfguid_identifier.h +204 -0
- libevtx_python-20260705/libfguid/libfguid_libcerror.h +50 -0
- libevtx_python-20260705/libfguid/libfguid_support.c +41 -0
- libevtx_python-20260705/libfguid/libfguid_support.h +47 -0
- libevtx_python-20260705/libfguid/libfguid_types.h +47 -0
- libevtx_python-20260705/libfguid/libfguid_unused.h +44 -0
- libevtx_python-20260705/libfvalue/Makefile.in +1037 -0
- libevtx_python-20260705/libfvalue/libfvalue_binary_data.c +1390 -0
- libevtx_python-20260705/libfvalue/libfvalue_binary_data.h +114 -0
- libevtx_python-20260705/libfvalue/libfvalue_codepage.h +103 -0
- libevtx_python-20260705/libfvalue/libfvalue_data_handle.c +1661 -0
- libevtx_python-20260705/libfvalue/libfvalue_data_handle.h +195 -0
- libevtx_python-20260705/libfvalue/libfvalue_definitions.h +350 -0
- libevtx_python-20260705/libfvalue/libfvalue_error.c +111 -0
- libevtx_python-20260705/libfvalue/libfvalue_error.h +74 -0
- libevtx_python-20260705/libfvalue/libfvalue_extern.h +40 -0
- libevtx_python-20260705/libfvalue/libfvalue_filetime.c +113 -0
- libevtx_python-20260705/libfvalue/libfvalue_filetime.h +56 -0
- libevtx_python-20260705/libfvalue/libfvalue_floating_point.c +3472 -0
- libevtx_python-20260705/libfvalue/libfvalue_floating_point.h +246 -0
- libevtx_python-20260705/libfvalue/libfvalue_integer.c +2908 -0
- libevtx_python-20260705/libfvalue/libfvalue_integer.h +261 -0
- libevtx_python-20260705/libfvalue/libfvalue_libcdata.h +54 -0
- libevtx_python-20260705/libfvalue/libfvalue_libcerror.h +50 -0
- libevtx_python-20260705/libfvalue/libfvalue_libcnotify.h +50 -0
- libevtx_python-20260705/libfvalue/libfvalue_libfdatetime.h +58 -0
- libevtx_python-20260705/libfvalue/libfvalue_libfguid.h +51 -0
- libevtx_python-20260705/libfvalue/libfvalue_libfwnt.h +57 -0
- libevtx_python-20260705/libfvalue/libfvalue_libuna.h +60 -0
- libevtx_python-20260705/libfvalue/libfvalue_split_utf16_string.c +546 -0
- libevtx_python-20260705/libfvalue/libfvalue_split_utf16_string.h +114 -0
- libevtx_python-20260705/libfvalue/libfvalue_split_utf8_string.c +535 -0
- libevtx_python-20260705/libfvalue/libfvalue_split_utf8_string.h +114 -0
- libevtx_python-20260705/libfvalue/libfvalue_string.c +3070 -0
- libevtx_python-20260705/libfvalue/libfvalue_string.h +165 -0
- libevtx_python-20260705/libfvalue/libfvalue_support.c +41 -0
- libevtx_python-20260705/libfvalue/libfvalue_support.h +47 -0
- libevtx_python-20260705/libfvalue/libfvalue_table.c +1357 -0
- libevtx_python-20260705/libfvalue/libfvalue_table.h +136 -0
- libevtx_python-20260705/libfvalue/libfvalue_types.h +55 -0
- libevtx_python-20260705/libfvalue/libfvalue_unused.h +44 -0
- libevtx_python-20260705/libfvalue/libfvalue_utf16_string.c +300 -0
- libevtx_python-20260705/libfvalue/libfvalue_utf16_string.h +50 -0
- libevtx_python-20260705/libfvalue/libfvalue_utf8_string.c +300 -0
- libevtx_python-20260705/libfvalue/libfvalue_utf8_string.h +50 -0
- libevtx_python-20260705/libfvalue/libfvalue_value.c +5244 -0
- libevtx_python-20260705/libfvalue/libfvalue_value.h +753 -0
- libevtx_python-20260705/libfvalue/libfvalue_value_entry.c +210 -0
- libevtx_python-20260705/libfvalue/libfvalue_value_entry.h +65 -0
- libevtx_python-20260705/libfvalue/libfvalue_value_type.c +1183 -0
- libevtx_python-20260705/libfvalue/libfvalue_value_type.h +100 -0
- libevtx_python-20260705/libfwevt/Makefile.in +1089 -0
- libevtx_python-20260705/libfwevt/fwevt_template.h +557 -0
- libevtx_python-20260705/libfwevt/libfwevt_channel.c +698 -0
- libevtx_python-20260705/libfwevt/libfwevt_channel.h +110 -0
- libevtx_python-20260705/libfwevt/libfwevt_data_segment.c +274 -0
- libevtx_python-20260705/libfwevt/libfwevt_data_segment.h +94 -0
- libevtx_python-20260705/libfwevt/libfwevt_date_time.c +468 -0
- libevtx_python-20260705/libfwevt/libfwevt_date_time.h +45 -0
- libevtx_python-20260705/libfwevt/libfwevt_debug.c +689 -0
- libevtx_python-20260705/libfwevt/libfwevt_debug.h +70 -0
- libevtx_python-20260705/libfwevt/libfwevt_definitions.h +168 -0
- libevtx_python-20260705/libfwevt/libfwevt_error.c +111 -0
- libevtx_python-20260705/libfwevt/libfwevt_error.h +74 -0
- libevtx_python-20260705/libfwevt/libfwevt_event.c +545 -0
- libevtx_python-20260705/libfwevt/libfwevt_event.h +122 -0
- libevtx_python-20260705/libfwevt/libfwevt_extern.h +53 -0
- libevtx_python-20260705/libfwevt/libfwevt_floating_point.c +1296 -0
- libevtx_python-20260705/libfwevt/libfwevt_floating_point.h +77 -0
- libevtx_python-20260705/libfwevt/libfwevt_integer.c +866 -0
- libevtx_python-20260705/libfwevt/libfwevt_integer.h +102 -0
- libevtx_python-20260705/libfwevt/libfwevt_keyword.c +374 -0
- libevtx_python-20260705/libfwevt/libfwevt_keyword.h +70 -0
- libevtx_python-20260705/libfwevt/libfwevt_level.c +373 -0
- libevtx_python-20260705/libfwevt/libfwevt_level.h +70 -0
- libevtx_python-20260705/libfwevt/libfwevt_libcdata.h +54 -0
- libevtx_python-20260705/libfwevt/libfwevt_libcerror.h +50 -0
- libevtx_python-20260705/libfwevt/libfwevt_libcnotify.h +50 -0
- libevtx_python-20260705/libfwevt/libfwevt_libfdatetime.h +56 -0
- libevtx_python-20260705/libfwevt/libfwevt_libfguid.h +49 -0
- libevtx_python-20260705/libfwevt/libfwevt_libfwnt.h +58 -0
- libevtx_python-20260705/libfwevt/libfwevt_libuna.h +60 -0
- libevtx_python-20260705/libfwevt/libfwevt_manifest.c +839 -0
- libevtx_python-20260705/libfwevt/libfwevt_manifest.h +97 -0
- libevtx_python-20260705/libfwevt/libfwevt_map.c +278 -0
- libevtx_python-20260705/libfwevt/libfwevt_map.h +70 -0
- libevtx_python-20260705/libfwevt/libfwevt_notify.c +120 -0
- libevtx_python-20260705/libfwevt/libfwevt_notify.h +63 -0
- libevtx_python-20260705/libfwevt/libfwevt_opcode.c +373 -0
- libevtx_python-20260705/libfwevt/libfwevt_opcode.h +70 -0
- libevtx_python-20260705/libfwevt/libfwevt_provider.c +4270 -0
- libevtx_python-20260705/libfwevt/libfwevt_provider.h +325 -0
- libevtx_python-20260705/libfwevt/libfwevt_support.c +41 -0
- libevtx_python-20260705/libfwevt/libfwevt_support.h +47 -0
- libevtx_python-20260705/libfwevt/libfwevt_task.c +397 -0
- libevtx_python-20260705/libfwevt/libfwevt_task.h +70 -0
- libevtx_python-20260705/libfwevt/libfwevt_template.c +1616 -0
- libevtx_python-20260705/libfwevt/libfwevt_template.h +194 -0
- libevtx_python-20260705/libfwevt/libfwevt_template_item.c +869 -0
- libevtx_python-20260705/libfwevt/libfwevt_template_item.h +145 -0
- libevtx_python-20260705/libfwevt/libfwevt_types.h +75 -0
- libevtx_python-20260705/libfwevt/libfwevt_unused.h +44 -0
- libevtx_python-20260705/libfwevt/libfwevt_xml_document.c +6788 -0
- libevtx_python-20260705/libfwevt/libfwevt_xml_document.h +317 -0
- libevtx_python-20260705/libfwevt/libfwevt_xml_string.c +984 -0
- libevtx_python-20260705/libfwevt/libfwevt_xml_string.h +72 -0
- libevtx_python-20260705/libfwevt/libfwevt_xml_tag.c +4692 -0
- libevtx_python-20260705/libfwevt/libfwevt_xml_tag.h +311 -0
- libevtx_python-20260705/libfwevt/libfwevt_xml_template_value.c +412 -0
- libevtx_python-20260705/libfwevt/libfwevt_xml_template_value.h +109 -0
- libevtx_python-20260705/libfwevt/libfwevt_xml_token.c +236 -0
- libevtx_python-20260705/libfwevt/libfwevt_xml_token.h +67 -0
- libevtx_python-20260705/libfwevt/libfwevt_xml_value.c +3691 -0
- libevtx_python-20260705/libfwevt/libfwevt_xml_value.h +276 -0
- libevtx_python-20260705/libfwnt/Makefile.in +1005 -0
- libevtx_python-20260705/libfwnt/libfwnt_access_control_entry.c +764 -0
- libevtx_python-20260705/libfwnt/libfwnt_access_control_entry.h +116 -0
- libevtx_python-20260705/libfwnt/libfwnt_access_control_list.c +516 -0
- libevtx_python-20260705/libfwnt/libfwnt_access_control_list.h +93 -0
- libevtx_python-20260705/libfwnt/libfwnt_bit_stream.c +308 -0
- libevtx_python-20260705/libfwnt/libfwnt_bit_stream.h +85 -0
- libevtx_python-20260705/libfwnt/libfwnt_debug.c +355 -0
- libevtx_python-20260705/libfwnt/libfwnt_debug.h +53 -0
- libevtx_python-20260705/libfwnt/libfwnt_definitions.h +112 -0
- libevtx_python-20260705/libfwnt/libfwnt_error.c +111 -0
- libevtx_python-20260705/libfwnt/libfwnt_error.h +74 -0
- libevtx_python-20260705/libfwnt/libfwnt_extern.h +40 -0
- libevtx_python-20260705/libfwnt/libfwnt_huffman_tree.c +600 -0
- libevtx_python-20260705/libfwnt/libfwnt_huffman_tree.h +79 -0
- libevtx_python-20260705/libfwnt/libfwnt_libcdata.h +54 -0
- libevtx_python-20260705/libfwnt/libfwnt_libcerror.h +50 -0
- libevtx_python-20260705/libfwnt/libfwnt_libcnotify.h +50 -0
- libevtx_python-20260705/libfwnt/libfwnt_locale_identifier.c +470 -0
- libevtx_python-20260705/libfwnt/libfwnt_locale_identifier.h +63 -0
- libevtx_python-20260705/libfwnt/libfwnt_lznt1.c +560 -0
- libevtx_python-20260705/libfwnt/libfwnt_lznt1.h +57 -0
- libevtx_python-20260705/libfwnt/libfwnt_lzx.c +1465 -0
- libevtx_python-20260705/libfwnt/libfwnt_lzx.h +95 -0
- libevtx_python-20260705/libfwnt/libfwnt_lzxpress.c +1041 -0
- libevtx_python-20260705/libfwnt/libfwnt_lzxpress.h +86 -0
- libevtx_python-20260705/libfwnt/libfwnt_notify.c +120 -0
- libevtx_python-20260705/libfwnt/libfwnt_notify.h +63 -0
- libevtx_python-20260705/libfwnt/libfwnt_security_descriptor.c +1027 -0
- libevtx_python-20260705/libfwnt/libfwnt_security_descriptor.h +116 -0
- libevtx_python-20260705/libfwnt/libfwnt_security_identifier.c +1176 -0
- libevtx_python-20260705/libfwnt/libfwnt_security_identifier.h +166 -0
- libevtx_python-20260705/libfwnt/libfwnt_support.c +41 -0
- libevtx_python-20260705/libfwnt/libfwnt_support.h +47 -0
- libevtx_python-20260705/libfwnt/libfwnt_types.h +53 -0
- libevtx_python-20260705/libfwnt/libfwnt_unused.h +44 -0
- libevtx_python-20260705/libregf/Makefile.in +1117 -0
- libevtx_python-20260705/libregf/libregf_checksum.c +295 -0
- libevtx_python-20260705/libregf/libregf_checksum.h +46 -0
- libevtx_python-20260705/libregf/libregf_codepage.h +90 -0
- libevtx_python-20260705/libregf/libregf_data_block_key.c +251 -0
- libevtx_python-20260705/libregf/libregf_data_block_key.h +66 -0
- libevtx_python-20260705/libregf/libregf_data_block_stream.c +110 -0
- libevtx_python-20260705/libregf/libregf_data_block_stream.h +59 -0
- libevtx_python-20260705/libregf/libregf_data_type.c +85 -0
- libevtx_python-20260705/libregf/libregf_data_type.h +64 -0
- libevtx_python-20260705/libregf/libregf_debug.c +596 -0
- libevtx_python-20260705/libregf/libregf_debug.h +85 -0
- libevtx_python-20260705/libregf/libregf_definitions.h +163 -0
- libevtx_python-20260705/libregf/libregf_dirty_vector.c +385 -0
- libevtx_python-20260705/libregf/libregf_dirty_vector.h +71 -0
- libevtx_python-20260705/libregf/libregf_error.c +111 -0
- libevtx_python-20260705/libregf/libregf_error.h +74 -0
- libevtx_python-20260705/libregf/libregf_extern.h +40 -0
- libevtx_python-20260705/libregf/libregf_file.c +2122 -0
- libevtx_python-20260705/libregf/libregf_file.h +204 -0
- libevtx_python-20260705/libregf/libregf_file_header.c +453 -0
- libevtx_python-20260705/libregf/libregf_file_header.h +84 -0
- libevtx_python-20260705/libregf/libregf_hive_bin.c +733 -0
- libevtx_python-20260705/libregf/libregf_hive_bin.h +105 -0
- libevtx_python-20260705/libregf/libregf_hive_bin_cell.c +135 -0
- libevtx_python-20260705/libregf/libregf_hive_bin_cell.h +68 -0
- libevtx_python-20260705/libregf/libregf_hive_bin_header.c +377 -0
- libevtx_python-20260705/libregf/libregf_hive_bin_header.h +73 -0
- libevtx_python-20260705/libregf/libregf_hive_bins_list.c +766 -0
- libevtx_python-20260705/libregf/libregf_hive_bins_list.h +116 -0
- libevtx_python-20260705/libregf/libregf_io_handle.c +178 -0
- libevtx_python-20260705/libregf/libregf_io_handle.h +82 -0
- libevtx_python-20260705/libregf/libregf_key.c +3668 -0
- libevtx_python-20260705/libregf/libregf_key.h +320 -0
- libevtx_python-20260705/libregf/libregf_key_descriptor.c +131 -0
- libevtx_python-20260705/libregf/libregf_key_descriptor.h +60 -0
- libevtx_python-20260705/libregf/libregf_key_item.c +2742 -0
- libevtx_python-20260705/libregf/libregf_key_item.h +279 -0
- libevtx_python-20260705/libregf/libregf_key_tree.c +515 -0
- libevtx_python-20260705/libregf/libregf_key_tree.h +63 -0
- libevtx_python-20260705/libregf/libregf_libbfio.h +58 -0
- libevtx_python-20260705/libregf/libregf_libcdata.h +54 -0
- libevtx_python-20260705/libregf/libregf_libcerror.h +50 -0
- libevtx_python-20260705/libregf/libregf_libclocale.h +50 -0
- libevtx_python-20260705/libregf/libregf_libcnotify.h +50 -0
- libevtx_python-20260705/libregf/libregf_libcthreads.h +64 -0
- libevtx_python-20260705/libregf/libregf_libfcache.h +50 -0
- libevtx_python-20260705/libregf/libregf_libfdata.h +54 -0
- libevtx_python-20260705/libregf/libregf_libfdatetime.h +56 -0
- libevtx_python-20260705/libregf/libregf_libfwnt.h +58 -0
- libevtx_python-20260705/libregf/libregf_libuna.h +60 -0
- libevtx_python-20260705/libregf/libregf_multi_string.c +901 -0
- libevtx_python-20260705/libregf/libregf_multi_string.h +128 -0
- libevtx_python-20260705/libregf/libregf_named_key.c +1359 -0
- libevtx_python-20260705/libregf/libregf_named_key.h +172 -0
- libevtx_python-20260705/libregf/libregf_notify.c +120 -0
- libevtx_python-20260705/libregf/libregf_notify.h +63 -0
- libevtx_python-20260705/libregf/libregf_security_key.c +447 -0
- libevtx_python-20260705/libregf/libregf_security_key.h +68 -0
- libevtx_python-20260705/libregf/libregf_sub_key_list.c +441 -0
- libevtx_python-20260705/libregf/libregf_sub_key_list.h +69 -0
- libevtx_python-20260705/libregf/libregf_support.c +429 -0
- libevtx_python-20260705/libregf/libregf_support.h +82 -0
- libevtx_python-20260705/libregf/libregf_types.h +53 -0
- libevtx_python-20260705/libregf/libregf_unused.h +44 -0
- libevtx_python-20260705/libregf/libregf_value.c +1844 -0
- libevtx_python-20260705/libregf/libregf_value.h +211 -0
- libevtx_python-20260705/libregf/libregf_value_item.c +3011 -0
- libevtx_python-20260705/libregf/libregf_value_item.h +254 -0
- libevtx_python-20260705/libregf/libregf_value_key.c +1516 -0
- libevtx_python-20260705/libregf/libregf_value_key.h +160 -0
- libevtx_python-20260705/libregf/regf_cell_values.h +263 -0
- libevtx_python-20260705/libregf/regf_file_header.h +114 -0
- libevtx_python-20260705/libregf/regf_hive_bin.h +81 -0
- libevtx_python-20260705/libuna/Makefile.in +1347 -0
- libevtx_python-20260705/libuna/libuna_base16_stream.c +1511 -0
- libevtx_python-20260705/libuna/libuna_base16_stream.h +93 -0
- libevtx_python-20260705/libuna/libuna_base32_stream.c +3035 -0
- libevtx_python-20260705/libuna/libuna_base32_stream.h +131 -0
- libevtx_python-20260705/libuna/libuna_base64_stream.c +2832 -0
- libevtx_python-20260705/libuna/libuna_base64_stream.h +131 -0
- libevtx_python-20260705/libuna/libuna_byte_stream.c +633 -0
- libevtx_python-20260705/libuna/libuna_byte_stream.h +104 -0
- libevtx_python-20260705/libuna/libuna_codepage_iso_8859_10.c +73 -0
- libevtx_python-20260705/libuna/libuna_codepage_iso_8859_10.h +48 -0
- libevtx_python-20260705/libuna/libuna_codepage_iso_8859_13.c +82 -0
- libevtx_python-20260705/libuna/libuna_codepage_iso_8859_13.h +48 -0
- libevtx_python-20260705/libuna/libuna_codepage_iso_8859_14.c +66 -0
- libevtx_python-20260705/libuna/libuna_codepage_iso_8859_14.h +51 -0
- libevtx_python-20260705/libuna/libuna_codepage_iso_8859_15.c +46 -0
- libevtx_python-20260705/libuna/libuna_codepage_iso_8859_15.h +45 -0
- libevtx_python-20260705/libuna/libuna_codepage_iso_8859_16.c +78 -0
- libevtx_python-20260705/libuna/libuna_codepage_iso_8859_16.h +57 -0
- libevtx_python-20260705/libuna/libuna_codepage_iso_8859_2.c +82 -0
- libevtx_python-20260705/libuna/libuna_codepage_iso_8859_2.h +51 -0
- libevtx_python-20260705/libuna/libuna_codepage_iso_8859_3.c +79 -0
- libevtx_python-20260705/libuna/libuna_codepage_iso_8859_3.h +57 -0
- libevtx_python-20260705/libuna/libuna_codepage_iso_8859_4.c +80 -0
- libevtx_python-20260705/libuna/libuna_codepage_iso_8859_4.h +48 -0
- libevtx_python-20260705/libuna/libuna_codepage_iso_8859_5.c +62 -0
- libevtx_python-20260705/libuna/libuna_codepage_iso_8859_5.h +45 -0
- libevtx_python-20260705/libuna/libuna_codepage_iso_8859_6.c +58 -0
- libevtx_python-20260705/libuna/libuna_codepage_iso_8859_6.h +45 -0
- libevtx_python-20260705/libuna/libuna_codepage_iso_8859_7.c +66 -0
- libevtx_python-20260705/libuna/libuna_codepage_iso_8859_7.h +48 -0
- libevtx_python-20260705/libuna/libuna_codepage_iso_8859_8.c +61 -0
- libevtx_python-20260705/libuna/libuna_codepage_iso_8859_8.h +48 -0
- libevtx_python-20260705/libuna/libuna_codepage_iso_8859_9.c +50 -0
- libevtx_python-20260705/libuna/libuna_codepage_iso_8859_9.h +45 -0
- libevtx_python-20260705/libuna/libuna_codepage_koi8_r.c +392 -0
- libevtx_python-20260705/libuna/libuna_codepage_koi8_r.h +54 -0
- libevtx_python-20260705/libuna/libuna_codepage_koi8_u.c +424 -0
- libevtx_python-20260705/libuna/libuna_codepage_koi8_u.h +54 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_arabic.c +352 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_arabic.h +54 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_celtic.c +395 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_celtic.h +54 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_centraleurroman.c +319 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_centraleurroman.h +54 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_croatian.c +378 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_croatian.h +54 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_cyrillic.c +325 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_cyrillic.h +54 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_dingbats.c +347 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_dingbats.h +54 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_farsi.c +372 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_farsi.h +54 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_gaelic.c +437 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_gaelic.h +54 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_greek.c +305 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_greek.h +54 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_icelandic.c +381 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_icelandic.h +54 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_inuit.c +380 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_inuit.h +54 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_roman.c +387 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_roman.h +54 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_romanian.c +396 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_romanian.h +54 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_russian.c +317 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_russian.h +54 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_symbol.c +537 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_symbol.h +59 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_thai.c +330 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_thai.h +59 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_turkish.c +397 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_turkish.h +54 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_ukrainian.c +321 -0
- libevtx_python-20260705/libuna/libuna_codepage_mac_ukrainian.h +54 -0
- libevtx_python-20260705/libuna/libuna_codepage_windows_1250.c +313 -0
- libevtx_python-20260705/libuna/libuna_codepage_windows_1250.h +54 -0
- libevtx_python-20260705/libuna/libuna_codepage_windows_1251.c +301 -0
- libevtx_python-20260705/libuna/libuna_codepage_windows_1251.h +54 -0
- libevtx_python-20260705/libuna/libuna_codepage_windows_1252.c +287 -0
- libevtx_python-20260705/libuna/libuna_codepage_windows_1252.h +54 -0
- libevtx_python-20260705/libuna/libuna_codepage_windows_1253.c +291 -0
- libevtx_python-20260705/libuna/libuna_codepage_windows_1253.h +54 -0
- libevtx_python-20260705/libuna/libuna_codepage_windows_1254.c +348 -0
- libevtx_python-20260705/libuna/libuna_codepage_windows_1254.h +54 -0
- libevtx_python-20260705/libuna/libuna_codepage_windows_1255.c +328 -0
- libevtx_python-20260705/libuna/libuna_codepage_windows_1255.h +54 -0
- libevtx_python-20260705/libuna/libuna_codepage_windows_1256.c +372 -0
- libevtx_python-20260705/libuna/libuna_codepage_windows_1256.h +54 -0
- libevtx_python-20260705/libuna/libuna_codepage_windows_1257.c +303 -0
- libevtx_python-20260705/libuna/libuna_codepage_windows_1257.h +54 -0
- libevtx_python-20260705/libuna/libuna_codepage_windows_1258.c +349 -0
- libevtx_python-20260705/libuna/libuna_codepage_windows_1258.h +54 -0
- libevtx_python-20260705/libuna/libuna_codepage_windows_874.c +274 -0
- libevtx_python-20260705/libuna/libuna_codepage_windows_874.h +54 -0
- libevtx_python-20260705/libuna/libuna_codepage_windows_932.c +4913 -0
- libevtx_python-20260705/libuna/libuna_codepage_windows_932.h +59 -0
- libevtx_python-20260705/libuna/libuna_codepage_windows_936.c +7371 -0
- libevtx_python-20260705/libuna/libuna_codepage_windows_936.h +59 -0
- libevtx_python-20260705/libuna/libuna_codepage_windows_949.c +8163 -0
- libevtx_python-20260705/libuna/libuna_codepage_windows_949.h +59 -0
- libevtx_python-20260705/libuna/libuna_codepage_windows_950.c +6390 -0
- libevtx_python-20260705/libuna/libuna_codepage_windows_950.h +59 -0
- libevtx_python-20260705/libuna/libuna_definitions.h +436 -0
- libevtx_python-20260705/libuna/libuna_error.c +111 -0
- libevtx_python-20260705/libuna/libuna_error.h +74 -0
- libevtx_python-20260705/libuna/libuna_extern.h +53 -0
- libevtx_python-20260705/libuna/libuna_libcerror.h +50 -0
- libevtx_python-20260705/libuna/libuna_scsu.c +64 -0
- libevtx_python-20260705/libuna/libuna_scsu.h +45 -0
- libevtx_python-20260705/libuna/libuna_support.c +39 -0
- libevtx_python-20260705/libuna/libuna_support.h +49 -0
- libevtx_python-20260705/libuna/libuna_types.h +53 -0
- libevtx_python-20260705/libuna/libuna_unicode_character.c +5828 -0
- libevtx_python-20260705/libuna/libuna_unicode_character.h +260 -0
- libevtx_python-20260705/libuna/libuna_unused.h +44 -0
- libevtx_python-20260705/libuna/libuna_url_stream.c +584 -0
- libevtx_python-20260705/libuna/libuna_url_stream.h +71 -0
- libevtx_python-20260705/libuna/libuna_utf16_stream.c +815 -0
- libevtx_python-20260705/libuna/libuna_utf16_stream.h +109 -0
- libevtx_python-20260705/libuna/libuna_utf16_string.c +3950 -0
- libevtx_python-20260705/libuna/libuna_utf16_string.h +325 -0
- libevtx_python-20260705/libuna/libuna_utf32_stream.c +819 -0
- libevtx_python-20260705/libuna/libuna_utf32_stream.h +109 -0
- libevtx_python-20260705/libuna/libuna_utf32_string.c +3808 -0
- libevtx_python-20260705/libuna/libuna_utf32_string.h +321 -0
- libevtx_python-20260705/libuna/libuna_utf7_stream.c +628 -0
- libevtx_python-20260705/libuna/libuna_utf7_stream.h +98 -0
- libevtx_python-20260705/libuna/libuna_utf8_stream.c +748 -0
- libevtx_python-20260705/libuna/libuna_utf8_stream.h +105 -0
- libevtx_python-20260705/libuna/libuna_utf8_string.c +4092 -0
- libevtx_python-20260705/libuna/libuna_utf8_string.h +329 -0
- libevtx_python-20260705/libwrc/Makefile.in +1114 -0
- libevtx_python-20260705/libwrc/libwrc_codepage.h +90 -0
- libevtx_python-20260705/libwrc/libwrc_data_descriptor.c +295 -0
- libevtx_python-20260705/libwrc/libwrc_data_descriptor.h +73 -0
- libevtx_python-20260705/libwrc/libwrc_debug.c +324 -0
- libevtx_python-20260705/libwrc/libwrc_debug.h +59 -0
- libevtx_python-20260705/libwrc/libwrc_definitions.h +144 -0
- libevtx_python-20260705/libwrc/libwrc_error.c +111 -0
- libevtx_python-20260705/libwrc/libwrc_error.h +74 -0
- libevtx_python-20260705/libwrc/libwrc_extern.h +53 -0
- libevtx_python-20260705/libwrc/libwrc_io_handle.c +173 -0
- libevtx_python-20260705/libwrc/libwrc_io_handle.h +74 -0
- libevtx_python-20260705/libwrc/libwrc_language_entry.c +307 -0
- libevtx_python-20260705/libwrc/libwrc_language_entry.h +88 -0
- libevtx_python-20260705/libwrc/libwrc_language_table.c +459 -0
- libevtx_python-20260705/libwrc/libwrc_language_table.h +87 -0
- libevtx_python-20260705/libwrc/libwrc_libbfio.h +58 -0
- libevtx_python-20260705/libwrc/libwrc_libcdata.h +54 -0
- libevtx_python-20260705/libwrc/libwrc_libcerror.h +50 -0
- libevtx_python-20260705/libwrc/libwrc_libclocale.h +50 -0
- libevtx_python-20260705/libwrc/libwrc_libcnotify.h +50 -0
- libevtx_python-20260705/libwrc/libwrc_libfcache.h +50 -0
- libevtx_python-20260705/libwrc/libwrc_libfdata.h +54 -0
- libevtx_python-20260705/libwrc/libwrc_libfguid.h +49 -0
- libevtx_python-20260705/libwrc/libwrc_libfvalue.h +60 -0
- libevtx_python-20260705/libwrc/libwrc_libfwnt.h +58 -0
- libevtx_python-20260705/libwrc/libwrc_libuna.h +60 -0
- libevtx_python-20260705/libwrc/libwrc_manifest_resource.c +430 -0
- libevtx_python-20260705/libwrc/libwrc_manifest_resource.h +97 -0
- libevtx_python-20260705/libwrc/libwrc_manifest_values.c +242 -0
- libevtx_python-20260705/libwrc/libwrc_manifest_values.h +50 -0
- libevtx_python-20260705/libwrc/libwrc_message_table_resource.c +995 -0
- libevtx_python-20260705/libwrc/libwrc_message_table_resource.h +119 -0
- libevtx_python-20260705/libwrc/libwrc_message_table_values.c +509 -0
- libevtx_python-20260705/libwrc/libwrc_message_table_values.h +51 -0
- libevtx_python-20260705/libwrc/libwrc_mui_resource.c +2478 -0
- libevtx_python-20260705/libwrc/libwrc_mui_resource.h +209 -0
- libevtx_python-20260705/libwrc/libwrc_mui_values.c +1384 -0
- libevtx_python-20260705/libwrc/libwrc_mui_values.h +106 -0
- libevtx_python-20260705/libwrc/libwrc_notify.c +120 -0
- libevtx_python-20260705/libwrc/libwrc_notify.h +63 -0
- libevtx_python-20260705/libwrc/libwrc_resource.c +1407 -0
- libevtx_python-20260705/libwrc/libwrc_resource.h +158 -0
- libevtx_python-20260705/libwrc/libwrc_resource_item.c +892 -0
- libevtx_python-20260705/libwrc/libwrc_resource_item.h +161 -0
- libevtx_python-20260705/libwrc/libwrc_resource_node_entry.c +962 -0
- libevtx_python-20260705/libwrc/libwrc_resource_node_entry.h +140 -0
- libevtx_python-20260705/libwrc/libwrc_resource_node_header.c +347 -0
- libevtx_python-20260705/libwrc/libwrc_resource_node_header.h +77 -0
- libevtx_python-20260705/libwrc/libwrc_resource_node_tree.c +559 -0
- libevtx_python-20260705/libwrc/libwrc_resource_node_tree.h +50 -0
- libevtx_python-20260705/libwrc/libwrc_stream.c +1841 -0
- libevtx_python-20260705/libwrc/libwrc_stream.h +190 -0
- libevtx_python-20260705/libwrc/libwrc_string_table_resource.c +809 -0
- libevtx_python-20260705/libwrc/libwrc_string_table_resource.h +119 -0
- libevtx_python-20260705/libwrc/libwrc_string_values.c +329 -0
- libevtx_python-20260705/libwrc/libwrc_string_values.h +51 -0
- libevtx_python-20260705/libwrc/libwrc_support.c +102 -0
- libevtx_python-20260705/libwrc/libwrc_support.h +62 -0
- libevtx_python-20260705/libwrc/libwrc_table_entry.c +463 -0
- libevtx_python-20260705/libwrc/libwrc_table_entry.h +97 -0
- libevtx_python-20260705/libwrc/libwrc_types.h +61 -0
- libevtx_python-20260705/libwrc/libwrc_unused.h +44 -0
- libevtx_python-20260705/libwrc/libwrc_version_information_resource.c +1938 -0
- libevtx_python-20260705/libwrc/libwrc_version_information_resource.h +118 -0
- libevtx_python-20260705/libwrc/libwrc_version_values.c +1978 -0
- libevtx_python-20260705/libwrc/libwrc_version_values.h +116 -0
- libevtx_python-20260705/libwrc/wrc_data_descriptor.h +52 -0
- libevtx_python-20260705/libwrc/wrc_message_table_resource.h +72 -0
- libevtx_python-20260705/libwrc/wrc_mui_resource.h +93 -0
- libevtx_python-20260705/libwrc/wrc_resource_node.h +88 -0
- libevtx_python-20260705/libwrc/wrc_version_information_resource.h +57 -0
- libevtx_python-20260705/ltmain.sh +11436 -0
- libevtx_python-20260705/m4/common.m4 +656 -0
- libevtx_python-20260705/m4/libcdirectory.m4 +252 -0
- libevtx_python-20260705/m4/libcfile.m4 +307 -0
- libevtx_python-20260705/m4/libclocale.m4 +242 -0
- libevtx_python-20260705/m4/libcpath.m4 +274 -0
- libevtx_python-20260705/m4/libtool.m4 +8427 -0
- libevtx_python-20260705/m4/ltoptions.m4 +437 -0
- libevtx_python-20260705/m4/ltsugar.m4 +124 -0
- libevtx_python-20260705/m4/ltversion.m4 +24 -0
- libevtx_python-20260705/m4/lt~obsolete.m4 +99 -0
- libevtx_python-20260705/m4/pthread.m4 +126 -0
- libevtx_python-20260705/m4/python.m4 +222 -0
- libevtx_python-20260705/m4/tests.m4 +319 -0
- libevtx_python-20260705/m4/types.m4 +133 -0
- libevtx_python-20260705/m4/yaltools.m4 +99 -0
- libevtx_python-20260705/manuals/Makefile.am +12 -0
- libevtx_python-20260705/manuals/Makefile.in +871 -0
- libevtx_python-20260705/manuals/evtxexport.1 +112 -0
- libevtx_python-20260705/manuals/evtxinfo.1 +72 -0
- libevtx_python-20260705/manuals/libevtx.3 +676 -0
- libevtx_python-20260705/missing +215 -0
- libevtx_python-20260705/msvscpp/Makefile.in +788 -0
- libevtx_python-20260705/ossfuzz/Makefile.in +1026 -0
- libevtx_python-20260705/ossfuzz/file_fuzzer.cc +99 -0
- libevtx_python-20260705/ossfuzz/ossfuzz_libbfio.h +58 -0
- libevtx_python-20260705/ossfuzz/ossfuzz_libevtx.h +30 -0
- libevtx_python-20260705/ossfuzz/record_fuzzer.cc +121 -0
- libevtx_python-20260705/po/Makevars +45 -0
- libevtx_python-20260705/pyevtx/Makefile.am +56 -0
- libevtx_python-20260705/pyevtx/Makefile.in +1147 -0
- libevtx_python-20260705/pyevtx/pyevtx.c +742 -0
- libevtx_python-20260705/pyevtx/pyevtx.h +71 -0
- libevtx_python-20260705/pyevtx/pyevtx_codepage.c +138 -0
- libevtx_python-20260705/pyevtx/pyevtx_codepage.h +42 -0
- libevtx_python-20260705/pyevtx/pyevtx_datetime.c +691 -0
- libevtx_python-20260705/pyevtx/pyevtx_datetime.h +65 -0
- libevtx_python-20260705/pyevtx/pyevtx_error.c +422 -0
- libevtx_python-20260705/pyevtx/pyevtx_error.h +60 -0
- libevtx_python-20260705/pyevtx/pyevtx_event_levels.c +334 -0
- libevtx_python-20260705/pyevtx/pyevtx_event_levels.h +63 -0
- libevtx_python-20260705/pyevtx/pyevtx_file.c +1774 -0
- libevtx_python-20260705/pyevtx/pyevtx_file.h +145 -0
- libevtx_python-20260705/pyevtx/pyevtx_file_flags.c +292 -0
- libevtx_python-20260705/pyevtx/pyevtx_file_flags.h +63 -0
- libevtx_python-20260705/pyevtx/pyevtx_file_object_io_handle.c +1524 -0
- libevtx_python-20260705/pyevtx/pyevtx_file_object_io_handle.h +141 -0
- libevtx_python-20260705/pyevtx/pyevtx_integer.c +399 -0
- libevtx_python-20260705/pyevtx/pyevtx_integer.h +56 -0
- libevtx_python-20260705/pyevtx/pyevtx_libbfio.h +54 -0
- libevtx_python-20260705/pyevtx/pyevtx_libcerror.h +50 -0
- libevtx_python-20260705/pyevtx/pyevtx_libclocale.h +50 -0
- libevtx_python-20260705/pyevtx/pyevtx_libevtx.h +30 -0
- libevtx_python-20260705/pyevtx/pyevtx_python.h +83 -0
- libevtx_python-20260705/pyevtx/pyevtx_record.c +2237 -0
- libevtx_python-20260705/pyevtx/pyevtx_record.h +155 -0
- libevtx_python-20260705/pyevtx/pyevtx_records.c +452 -0
- libevtx_python-20260705/pyevtx/pyevtx_records.h +95 -0
- libevtx_python-20260705/pyevtx/pyevtx_strings.c +451 -0
- libevtx_python-20260705/pyevtx/pyevtx_strings.h +95 -0
- libevtx_python-20260705/pyevtx/pyevtx_unused.h +44 -0
- libevtx_python-20260705/pyproject.toml +35 -0
- libevtx_python-20260705/pyproject.toml.in +35 -0
- libevtx_python-20260705/tests/Makefile.am +480 -0
- libevtx_python-20260705/tests/Makefile.in +1696 -0
- libevtx_python-20260705/tests/atlocal.in +29 -0
- libevtx_python-20260705/tests/evtx_test_chunk.c +571 -0
- libevtx_python-20260705/tests/evtx_test_chunks_table.c +116 -0
- libevtx_python-20260705/tests/evtx_test_error.c +150 -0
- libevtx_python-20260705/tests/evtx_test_file.c +2239 -0
- libevtx_python-20260705/tests/evtx_test_functions.c +562 -0
- libevtx_python-20260705/tests/evtx_test_functions.h +66 -0
- libevtx_python-20260705/tests/evtx_test_getopt.c +190 -0
- libevtx_python-20260705/tests/evtx_test_getopt.h +68 -0
- libevtx_python-20260705/tests/evtx_test_io_handle.c +447 -0
- libevtx_python-20260705/tests/evtx_test_libbfio.h +58 -0
- libevtx_python-20260705/tests/evtx_test_libcerror.h +50 -0
- libevtx_python-20260705/tests/evtx_test_libclocale.h +50 -0
- libevtx_python-20260705/tests/evtx_test_libcnotify.h +50 -0
- libevtx_python-20260705/tests/evtx_test_libevtx.h +30 -0
- libevtx_python-20260705/tests/evtx_test_libuna.h +60 -0
- libevtx_python-20260705/tests/evtx_test_macros.h +257 -0
- libevtx_python-20260705/tests/evtx_test_memory.c +199 -0
- libevtx_python-20260705/tests/evtx_test_memory.h +66 -0
- libevtx_python-20260705/tests/evtx_test_notify.c +229 -0
- libevtx_python-20260705/tests/evtx_test_record.c +178 -0
- libevtx_python-20260705/tests/evtx_test_record_values.c +3806 -0
- libevtx_python-20260705/tests/evtx_test_support.c +796 -0
- libevtx_python-20260705/tests/evtx_test_template_definition.c +305 -0
- libevtx_python-20260705/tests/evtx_test_tools_info_handle.c +299 -0
- libevtx_python-20260705/tests/evtx_test_tools_message_handle.c +299 -0
- libevtx_python-20260705/tests/evtx_test_tools_message_string.c +304 -0
- libevtx_python-20260705/tests/evtx_test_tools_output.c +105 -0
- libevtx_python-20260705/tests/evtx_test_tools_path_handle.c +299 -0
- libevtx_python-20260705/tests/evtx_test_tools_registry_file.c +299 -0
- libevtx_python-20260705/tests/evtx_test_tools_resource_file.c +304 -0
- libevtx_python-20260705/tests/evtx_test_tools_signal.c +213 -0
- libevtx_python-20260705/tests/evtx_test_unused.h +50 -0
- libevtx_python-20260705/tests/generate_test_inputs.sh +301 -0
- libevtx_python-20260705/tests/package.m4 +5 -0
- libevtx_python-20260705/tests/pyevtx_test_file.py +215 -0
- libevtx_python-20260705/tests/pyevtx_test_support.py +111 -0
- libevtx_python-20260705/tests/test_library.at +41 -0
- libevtx_python-20260705/tests/test_macros.at +188 -0
- libevtx_python-20260705/tests/test_manpages.at +73 -0
- libevtx_python-20260705/tests/test_python_module.at +145 -0
- libevtx_python-20260705/tests/test_tools.at +263 -0
- libevtx-20251118/AUTHORS +0 -4
- libevtx-20251118/INSTALL +0 -380
- libevtx-20251118/Makefile.am +0 -115
- libevtx-20251118/Makefile.in +0 -1294
- libevtx-20251118/PKG-INFO +0 -16
- libevtx-20251118/README +0 -16
- libevtx-20251118/acinclude.m4 +0 -73
- libevtx-20251118/aclocal.m4 +0 -1729
- libevtx-20251118/common/Makefile.in +0 -843
- libevtx-20251118/common/byte_stream.h +0 -257
- libevtx-20251118/common/common.h +0 -43
- libevtx-20251118/common/config.h +0 -674
- libevtx-20251118/common/config.h.in +0 -673
- libevtx-20251118/common/config_borlandc.h +0 -26
- libevtx-20251118/common/config_msc.h +0 -34
- libevtx-20251118/common/config_winapi.h +0 -95
- libevtx-20251118/common/file_stream.h +0 -151
- libevtx-20251118/common/memory.h +0 -129
- libevtx-20251118/common/narrow_string.h +0 -187
- libevtx-20251118/common/system_string.h +0 -154
- libevtx-20251118/common/types.h +0 -392
- libevtx-20251118/common/types.h.in +0 -392
- libevtx-20251118/common/wide_string.h +0 -175
- libevtx-20251118/compile +0 -364
- libevtx-20251118/config.guess +0 -1815
- libevtx-20251118/config.sub +0 -2354
- libevtx-20251118/configure +0 -85375
- libevtx-20251118/configure.ac +0 -275
- libevtx-20251118/depcomp +0 -792
- libevtx-20251118/dpkg/changelog +0 -5
- libevtx-20251118/dpkg/compat +0 -1
- libevtx-20251118/dpkg/control +0 -65
- libevtx-20251118/dpkg/copyright +0 -25
- libevtx-20251118/dpkg/rules +0 -31
- libevtx-20251118/evtxtools/Makefile.am +0 -136
- libevtx-20251118/evtxtools/Makefile.in +0 -1123
- libevtx-20251118/evtxtools/evtxexport.c +0 -606
- libevtx-20251118/evtxtools/evtxinfo.c +0 -333
- libevtx-20251118/evtxtools/evtxinput.c +0 -251
- libevtx-20251118/evtxtools/evtxinput.h +0 -62
- libevtx-20251118/evtxtools/evtxtools_getopt.c +0 -190
- libevtx-20251118/evtxtools/evtxtools_getopt.h +0 -68
- libevtx-20251118/evtxtools/evtxtools_i18n.h +0 -48
- libevtx-20251118/evtxtools/evtxtools_libbfio.h +0 -58
- libevtx-20251118/evtxtools/evtxtools_libcdirectory.h +0 -50
- libevtx-20251118/evtxtools/evtxtools_libcerror.h +0 -50
- libevtx-20251118/evtxtools/evtxtools_libclocale.h +0 -50
- libevtx-20251118/evtxtools/evtxtools_libcnotify.h +0 -50
- libevtx-20251118/evtxtools/evtxtools_libcpath.h +0 -48
- libevtx-20251118/evtxtools/evtxtools_libcsplit.h +0 -52
- libevtx-20251118/evtxtools/evtxtools_libevtx.h +0 -30
- libevtx-20251118/evtxtools/evtxtools_libexe.h +0 -50
- libevtx-20251118/evtxtools/evtxtools_libfcache.h +0 -50
- libevtx-20251118/evtxtools/evtxtools_libfdatetime.h +0 -56
- libevtx-20251118/evtxtools/evtxtools_libfguid.h +0 -49
- libevtx-20251118/evtxtools/evtxtools_libfvalue.h +0 -59
- libevtx-20251118/evtxtools/evtxtools_libfwevt.h +0 -62
- libevtx-20251118/evtxtools/evtxtools_libfwnt.h +0 -58
- libevtx-20251118/evtxtools/evtxtools_libregf.h +0 -52
- libevtx-20251118/evtxtools/evtxtools_libuna.h +0 -60
- libevtx-20251118/evtxtools/evtxtools_libwrc.h +0 -56
- libevtx-20251118/evtxtools/evtxtools_output.c +0 -207
- libevtx-20251118/evtxtools/evtxtools_output.h +0 -55
- libevtx-20251118/evtxtools/evtxtools_signal.c +0 -262
- libevtx-20251118/evtxtools/evtxtools_signal.h +0 -72
- libevtx-20251118/evtxtools/evtxtools_system_split_string.h +0 -73
- libevtx-20251118/evtxtools/evtxtools_unused.h +0 -50
- libevtx-20251118/evtxtools/evtxtools_wide_string.c +0 -69
- libevtx-20251118/evtxtools/evtxtools_wide_string.h +0 -54
- libevtx-20251118/evtxtools/export_handle.c +0 -2974
- libevtx-20251118/evtxtools/export_handle.h +0 -257
- libevtx-20251118/evtxtools/info_handle.c +0 -604
- libevtx-20251118/evtxtools/info_handle.h +0 -101
- libevtx-20251118/evtxtools/log_handle.c +0 -276
- libevtx-20251118/evtxtools/log_handle.h +0 -71
- libevtx-20251118/evtxtools/message_handle.c +0 -4109
- libevtx-20251118/evtxtools/message_handle.h +0 -304
- libevtx-20251118/evtxtools/message_string.c +0 -611
- libevtx-20251118/evtxtools/message_string.h +0 -79
- libevtx-20251118/evtxtools/path_handle.c +0 -407
- libevtx-20251118/evtxtools/path_handle.h +0 -69
- libevtx-20251118/evtxtools/registry_file.c +0 -903
- libevtx-20251118/evtxtools/registry_file.h +0 -124
- libevtx-20251118/evtxtools/resource_file.c +0 -2570
- libevtx-20251118/evtxtools/resource_file.h +0 -192
- libevtx-20251118/include/Makefile.in +0 -904
- libevtx-20251118/include/libevtx/codepage.h +0 -122
- libevtx-20251118/include/libevtx/definitions.h +0 -73
- libevtx-20251118/include/libevtx/definitions.h.in +0 -73
- libevtx-20251118/include/libevtx/error.h +0 -291
- libevtx-20251118/include/libevtx/extern.h +0 -44
- libevtx-20251118/include/libevtx/features.h +0 -50
- libevtx-20251118/include/libevtx/features.h.in +0 -50
- libevtx-20251118/include/libevtx/types.h +0 -213
- libevtx-20251118/include/libevtx/types.h.in +0 -213
- libevtx-20251118/include/libevtx.h +0 -868
- libevtx-20251118/include/libevtx.h.in +0 -868
- libevtx-20251118/install-sh +0 -541
- libevtx-20251118/libbfio/Makefile.in +0 -1004
- libevtx-20251118/libbfio/libbfio_codepage.h +0 -90
- libevtx-20251118/libbfio/libbfio_definitions.h +0 -89
- libevtx-20251118/libbfio/libbfio_error.c +0 -111
- libevtx-20251118/libbfio/libbfio_error.h +0 -74
- libevtx-20251118/libbfio/libbfio_extern.h +0 -46
- libevtx-20251118/libbfio/libbfio_file.c +0 -444
- libevtx-20251118/libbfio/libbfio_file.h +0 -90
- libevtx-20251118/libbfio/libbfio_file_io_handle.c +0 -1198
- libevtx-20251118/libbfio/libbfio_file_io_handle.h +0 -152
- libevtx-20251118/libbfio/libbfio_file_pool.c +0 -494
- libevtx-20251118/libbfio/libbfio_file_pool.h +0 -81
- libevtx-20251118/libbfio/libbfio_file_range.c +0 -468
- libevtx-20251118/libbfio/libbfio_file_range.h +0 -104
- libevtx-20251118/libbfio/libbfio_file_range_io_handle.c +0 -1158
- libevtx-20251118/libbfio/libbfio_file_range_io_handle.h +0 -160
- libevtx-20251118/libbfio/libbfio_handle.c +0 -2708
- libevtx-20251118/libbfio/libbfio_handle.h +0 -363
- libevtx-20251118/libbfio/libbfio_libcdata.h +0 -54
- libevtx-20251118/libbfio/libbfio_libcerror.h +0 -50
- libevtx-20251118/libbfio/libbfio_libcfile.h +0 -50
- libevtx-20251118/libbfio/libbfio_libclocale.h +0 -50
- libevtx-20251118/libbfio/libbfio_libcpath.h +0 -48
- libevtx-20251118/libbfio/libbfio_libcthreads.h +0 -64
- libevtx-20251118/libbfio/libbfio_libuna.h +0 -60
- libevtx-20251118/libbfio/libbfio_memory_range.c +0 -205
- libevtx-20251118/libbfio/libbfio_memory_range.h +0 -60
- libevtx-20251118/libbfio/libbfio_memory_range_io_handle.c +0 -871
- libevtx-20251118/libbfio/libbfio_memory_range_io_handle.h +0 -129
- libevtx-20251118/libbfio/libbfio_pool.c +0 -3521
- libevtx-20251118/libbfio/libbfio_pool.h +0 -275
- libevtx-20251118/libbfio/libbfio_support.c +0 -93
- libevtx-20251118/libbfio/libbfio_support.h +0 -58
- libevtx-20251118/libbfio/libbfio_system_string.c +0 -1017
- libevtx-20251118/libbfio/libbfio_system_string.h +0 -95
- libevtx-20251118/libbfio/libbfio_types.h +0 -49
- libevtx-20251118/libbfio/libbfio_unused.h +0 -44
- libevtx-20251118/libcdata/Makefile.in +0 -983
- libevtx-20251118/libcdata/libcdata_array.c +0 -2015
- libevtx-20251118/libcdata/libcdata_array.h +0 -200
- libevtx-20251118/libcdata/libcdata_btree.c +0 -964
- libevtx-20251118/libcdata/libcdata_btree.h +0 -141
- libevtx-20251118/libcdata/libcdata_btree_node.c +0 -1607
- libevtx-20251118/libcdata/libcdata_btree_node.h +0 -101
- libevtx-20251118/libcdata/libcdata_btree_values_list.c +0 -217
- libevtx-20251118/libcdata/libcdata_btree_values_list.h +0 -55
- libevtx-20251118/libcdata/libcdata_definitions.h +0 -81
- libevtx-20251118/libcdata/libcdata_error.c +0 -111
- libevtx-20251118/libcdata/libcdata_error.h +0 -74
- libevtx-20251118/libcdata/libcdata_extern.h +0 -46
- libevtx-20251118/libcdata/libcdata_libcerror.h +0 -50
- libevtx-20251118/libcdata/libcdata_libcthreads.h +0 -64
- libevtx-20251118/libcdata/libcdata_list.c +0 -2906
- libevtx-20251118/libcdata/libcdata_list.h +0 -235
- libevtx-20251118/libcdata/libcdata_list_element.c +0 -926
- libevtx-20251118/libcdata/libcdata_list_element.h +0 -142
- libevtx-20251118/libcdata/libcdata_range_list.c +0 -4922
- libevtx-20251118/libcdata/libcdata_range_list.h +0 -382
- libevtx-20251118/libcdata/libcdata_range_list_value.c +0 -429
- libevtx-20251118/libcdata/libcdata_range_list_value.h +0 -100
- libevtx-20251118/libcdata/libcdata_support.c +0 -39
- libevtx-20251118/libcdata/libcdata_support.h +0 -47
- libevtx-20251118/libcdata/libcdata_tree_node.c +0 -4216
- libevtx-20251118/libcdata/libcdata_tree_node.h +0 -301
- libevtx-20251118/libcdata/libcdata_types.h +0 -57
- libevtx-20251118/libcdata/libcdata_unused.h +0 -44
- libevtx-20251118/libcdirectory/Makefile.in +0 -955
- libevtx-20251118/libcdirectory/libcdirectory_definitions.h +0 -67
- libevtx-20251118/libcdirectory/libcdirectory_directory.c +0 -1676
- libevtx-20251118/libcdirectory/libcdirectory_directory.h +0 -125
- libevtx-20251118/libcdirectory/libcdirectory_directory_entry.c +0 -791
- libevtx-20251118/libcdirectory/libcdirectory_directory_entry.h +0 -122
- libevtx-20251118/libcdirectory/libcdirectory_error.c +0 -111
- libevtx-20251118/libcdirectory/libcdirectory_error.h +0 -74
- libevtx-20251118/libcdirectory/libcdirectory_extern.h +0 -46
- libevtx-20251118/libcdirectory/libcdirectory_libcerror.h +0 -50
- libevtx-20251118/libcdirectory/libcdirectory_libclocale.h +0 -50
- libevtx-20251118/libcdirectory/libcdirectory_libuna.h +0 -60
- libevtx-20251118/libcdirectory/libcdirectory_support.c +0 -93
- libevtx-20251118/libcdirectory/libcdirectory_support.h +0 -58
- libevtx-20251118/libcdirectory/libcdirectory_system_string.c +0 -1017
- libevtx-20251118/libcdirectory/libcdirectory_system_string.h +0 -95
- libevtx-20251118/libcdirectory/libcdirectory_types.h +0 -49
- libevtx-20251118/libcdirectory/libcdirectory_unused.h +0 -44
- libevtx-20251118/libcdirectory/libcdirectory_wide_string.c +0 -69
- libevtx-20251118/libcdirectory/libcdirectory_wide_string.h +0 -54
- libevtx-20251118/libcerror/Makefile.in +0 -925
- libevtx-20251118/libcerror/libcerror_definitions.h +0 -326
- libevtx-20251118/libcerror/libcerror_error.c +0 -827
- libevtx-20251118/libcerror/libcerror_error.h +0 -125
- libevtx-20251118/libcerror/libcerror_extern.h +0 -46
- libevtx-20251118/libcerror/libcerror_support.c +0 -39
- libevtx-20251118/libcerror/libcerror_support.h +0 -47
- libevtx-20251118/libcerror/libcerror_system.c +0 -587
- libevtx-20251118/libcerror/libcerror_system.h +0 -78
- libevtx-20251118/libcerror/libcerror_types.h +0 -51
- libevtx-20251118/libcerror/libcerror_unused.h +0 -44
- libevtx-20251118/libcfile/Makefile.in +0 -952
- libevtx-20251118/libcfile/libcfile_definitions.h +0 -101
- libevtx-20251118/libcfile/libcfile_error.c +0 -111
- libevtx-20251118/libcfile/libcfile_error.h +0 -74
- libevtx-20251118/libcfile/libcfile_extern.h +0 -46
- libevtx-20251118/libcfile/libcfile_file.c +0 -4570
- libevtx-20251118/libcfile/libcfile_file.h +0 -273
- libevtx-20251118/libcfile/libcfile_libcerror.h +0 -50
- libevtx-20251118/libcfile/libcfile_libclocale.h +0 -50
- libevtx-20251118/libcfile/libcfile_libcnotify.h +0 -50
- libevtx-20251118/libcfile/libcfile_libuna.h +0 -60
- libevtx-20251118/libcfile/libcfile_notify.c +0 -120
- libevtx-20251118/libcfile/libcfile_notify.h +0 -63
- libevtx-20251118/libcfile/libcfile_support.c +0 -1171
- libevtx-20251118/libcfile/libcfile_support.h +0 -98
- libevtx-20251118/libcfile/libcfile_system_string.c +0 -1017
- libevtx-20251118/libcfile/libcfile_system_string.h +0 -95
- libevtx-20251118/libcfile/libcfile_types.h +0 -47
- libevtx-20251118/libcfile/libcfile_unused.h +0 -44
- libevtx-20251118/libcfile/libcfile_winapi.c +0 -815
- libevtx-20251118/libcfile/libcfile_winapi.h +0 -122
- libevtx-20251118/libclocale/Makefile.in +0 -935
- libevtx-20251118/libclocale/libclocale_codepage.c +0 -920
- libevtx-20251118/libclocale/libclocale_codepage.h +0 -77
- libevtx-20251118/libclocale/libclocale_definitions.h +0 -106
- libevtx-20251118/libclocale/libclocale_extern.h +0 -46
- libevtx-20251118/libclocale/libclocale_libcerror.h +0 -50
- libevtx-20251118/libclocale/libclocale_locale.c +0 -494
- libevtx-20251118/libclocale/libclocale_locale.h +0 -66
- libevtx-20251118/libclocale/libclocale_support.c +0 -130
- libevtx-20251118/libclocale/libclocale_support.h +0 -55
- libevtx-20251118/libclocale/libclocale_unused.h +0 -44
- libevtx-20251118/libclocale/libclocale_wide_string.c +0 -69
- libevtx-20251118/libclocale/libclocale_wide_string.h +0 -54
- libevtx-20251118/libcnotify/Makefile.in +0 -933
- libevtx-20251118/libcnotify/libcnotify_definitions.h +0 -54
- libevtx-20251118/libcnotify/libcnotify_extern.h +0 -46
- libevtx-20251118/libcnotify/libcnotify_libcerror.h +0 -50
- libevtx-20251118/libcnotify/libcnotify_print.c +0 -400
- libevtx-20251118/libcnotify/libcnotify_print.h +0 -68
- libevtx-20251118/libcnotify/libcnotify_stream.c +0 -182
- libevtx-20251118/libcnotify/libcnotify_stream.h +0 -56
- libevtx-20251118/libcnotify/libcnotify_support.c +0 -39
- libevtx-20251118/libcnotify/libcnotify_support.h +0 -49
- libevtx-20251118/libcnotify/libcnotify_unused.h +0 -44
- libevtx-20251118/libcnotify/libcnotify_verbose.c +0 -38
- libevtx-20251118/libcnotify/libcnotify_verbose.h +0 -50
- libevtx-20251118/libcpath/Makefile.in +0 -937
- libevtx-20251118/libcpath/libcpath_definitions.h +0 -83
- libevtx-20251118/libcpath/libcpath_error.c +0 -111
- libevtx-20251118/libcpath/libcpath_error.h +0 -74
- libevtx-20251118/libcpath/libcpath_extern.h +0 -46
- libevtx-20251118/libcpath/libcpath_libcerror.h +0 -50
- libevtx-20251118/libcpath/libcpath_libclocale.h +0 -50
- libevtx-20251118/libcpath/libcpath_libcsplit.h +0 -52
- libevtx-20251118/libcpath/libcpath_libuna.h +0 -60
- libevtx-20251118/libcpath/libcpath_path.c +0 -7174
- libevtx-20251118/libcpath/libcpath_path.h +0 -273
- libevtx-20251118/libcpath/libcpath_support.c +0 -93
- libevtx-20251118/libcpath/libcpath_support.h +0 -58
- libevtx-20251118/libcpath/libcpath_system_string.c +0 -1017
- libevtx-20251118/libcpath/libcpath_system_string.h +0 -95
- libevtx-20251118/libcpath/libcpath_unused.h +0 -44
- libevtx-20251118/libcsplit/Makefile.in +0 -950
- libevtx-20251118/libcsplit/libcsplit_definitions.h +0 -47
- libevtx-20251118/libcsplit/libcsplit_error.c +0 -111
- libevtx-20251118/libcsplit/libcsplit_error.h +0 -74
- libevtx-20251118/libcsplit/libcsplit_extern.h +0 -46
- libevtx-20251118/libcsplit/libcsplit_libcerror.h +0 -50
- libevtx-20251118/libcsplit/libcsplit_narrow_split_string.c +0 -547
- libevtx-20251118/libcsplit/libcsplit_narrow_split_string.h +0 -107
- libevtx-20251118/libcsplit/libcsplit_narrow_string.c +0 -288
- libevtx-20251118/libcsplit/libcsplit_narrow_string.h +0 -49
- libevtx-20251118/libcsplit/libcsplit_support.c +0 -39
- libevtx-20251118/libcsplit/libcsplit_support.h +0 -47
- libevtx-20251118/libcsplit/libcsplit_types.h +0 -49
- libevtx-20251118/libcsplit/libcsplit_unused.h +0 -44
- libevtx-20251118/libcsplit/libcsplit_wide_split_string.c +0 -551
- libevtx-20251118/libcsplit/libcsplit_wide_split_string.h +0 -111
- libevtx-20251118/libcsplit/libcsplit_wide_string.c +0 -292
- libevtx-20251118/libcsplit/libcsplit_wide_string.h +0 -53
- libevtx-20251118/libcthreads/Makefile.in +0 -985
- libevtx-20251118/libcthreads/libcthreads_condition.c +0 -735
- libevtx-20251118/libcthreads/libcthreads_condition.h +0 -120
- libevtx-20251118/libcthreads/libcthreads_definitions.h +0 -84
- libevtx-20251118/libcthreads/libcthreads_error.c +0 -111
- libevtx-20251118/libcthreads/libcthreads_error.h +0 -74
- libevtx-20251118/libcthreads/libcthreads_extern.h +0 -46
- libevtx-20251118/libcthreads/libcthreads_libcerror.h +0 -50
- libevtx-20251118/libcthreads/libcthreads_lock.c +0 -391
- libevtx-20251118/libcthreads/libcthreads_lock.h +0 -88
- libevtx-20251118/libcthreads/libcthreads_mutex.c +0 -601
- libevtx-20251118/libcthreads/libcthreads_mutex.h +0 -98
- libevtx-20251118/libcthreads/libcthreads_queue.c +0 -1150
- libevtx-20251118/libcthreads/libcthreads_queue.h +0 -136
- libevtx-20251118/libcthreads/libcthreads_read_write_lock.c +0 -690
- libevtx-20251118/libcthreads/libcthreads_read_write_lock.h +0 -119
- libevtx-20251118/libcthreads/libcthreads_repeating_thread.c +0 -644
- libevtx-20251118/libcthreads/libcthreads_repeating_thread.h +0 -115
- libevtx-20251118/libcthreads/libcthreads_support.c +0 -39
- libevtx-20251118/libcthreads/libcthreads_support.h +0 -47
- libevtx-20251118/libcthreads/libcthreads_thread.c +0 -405
- libevtx-20251118/libcthreads/libcthreads_thread.h +0 -95
- libevtx-20251118/libcthreads/libcthreads_thread_attributes.c +0 -149
- libevtx-20251118/libcthreads/libcthreads_thread_attributes.h +0 -78
- libevtx-20251118/libcthreads/libcthreads_thread_pool.c +0 -1721
- libevtx-20251118/libcthreads/libcthreads_thread_pool.h +0 -177
- libevtx-20251118/libcthreads/libcthreads_types.h +0 -63
- libevtx-20251118/libcthreads/libcthreads_unused.h +0 -44
- libevtx-20251118/libevtx/Makefile.in +0 -1106
- libevtx-20251118/libevtx/evtx_chunk.h +0 -104
- libevtx-20251118/libevtx/evtx_event_record.h +0 -64
- libevtx-20251118/libevtx/evtx_file_header.h +0 -104
- libevtx-20251118/libevtx/libevtx.c +0 -80
- libevtx-20251118/libevtx/libevtx.rc +0 -38
- libevtx-20251118/libevtx/libevtx.rc.in +0 -38
- libevtx-20251118/libevtx/libevtx_byte_stream.c +0 -104
- libevtx-20251118/libevtx/libevtx_byte_stream.h +0 -44
- libevtx-20251118/libevtx/libevtx_checksum.c +0 -200
- libevtx-20251118/libevtx/libevtx_checksum.h +0 -56
- libevtx-20251118/libevtx/libevtx_chunk.c +0 -1163
- libevtx-20251118/libevtx/libevtx_chunk.h +0 -109
- libevtx-20251118/libevtx/libevtx_chunks_table.c +0 -446
- libevtx-20251118/libevtx/libevtx_chunks_table.h +0 -83
- libevtx-20251118/libevtx/libevtx_codepage.c +0 -107
- libevtx-20251118/libevtx/libevtx_codepage.h +0 -116
- libevtx-20251118/libevtx/libevtx_debug.c +0 -256
- libevtx-20251118/libevtx/libevtx_debug.h +0 -55
- libevtx-20251118/libevtx/libevtx_definitions.h +0 -207
- libevtx-20251118/libevtx/libevtx_definitions.h.in +0 -207
- libevtx-20251118/libevtx/libevtx_error.c +0 -111
- libevtx-20251118/libevtx/libevtx_error.h +0 -74
- libevtx-20251118/libevtx/libevtx_extern.h +0 -46
- libevtx-20251118/libevtx/libevtx_file.c +0 -2285
- libevtx-20251118/libevtx/libevtx_file.h +0 -212
- libevtx-20251118/libevtx/libevtx_i18n.c +0 -63
- libevtx-20251118/libevtx/libevtx_i18n.h +0 -55
- libevtx-20251118/libevtx/libevtx_io_handle.c +0 -584
- libevtx-20251118/libevtx/libevtx_io_handle.h +0 -127
- libevtx-20251118/libevtx/libevtx_libbfio.h +0 -58
- libevtx-20251118/libevtx/libevtx_libcdata.h +0 -54
- libevtx-20251118/libevtx/libevtx_libcerror.h +0 -50
- libevtx-20251118/libevtx/libevtx_libclocale.h +0 -50
- libevtx-20251118/libevtx/libevtx_libcnotify.h +0 -50
- libevtx-20251118/libevtx/libevtx_libfcache.h +0 -50
- libevtx-20251118/libevtx/libevtx_libfdata.h +0 -54
- libevtx-20251118/libevtx/libevtx_libfdatetime.h +0 -56
- libevtx-20251118/libevtx/libevtx_libfguid.h +0 -49
- libevtx-20251118/libevtx/libevtx_libfwevt.h +0 -62
- libevtx-20251118/libevtx/libevtx_libuna.h +0 -60
- libevtx-20251118/libevtx/libevtx_notify.c +0 -120
- libevtx-20251118/libevtx/libevtx_notify.h +0 -63
- libevtx-20251118/libevtx/libevtx_record.c +0 -2079
- libevtx-20251118/libevtx/libevtx_record.h +0 -337
- libevtx-20251118/libevtx/libevtx_record_values.c +0 -6312
- libevtx-20251118/libevtx/libevtx_record_values.h +0 -388
- libevtx-20251118/libevtx/libevtx_support.c +0 -429
- libevtx-20251118/libevtx/libevtx_support.h +0 -82
- libevtx-20251118/libevtx/libevtx_template_definition.c +0 -359
- libevtx-20251118/libevtx/libevtx_template_definition.h +0 -80
- libevtx-20251118/libevtx/libevtx_types.h +0 -56
- libevtx-20251118/libevtx/libevtx_unused.h +0 -44
- libevtx-20251118/libevtx.spec +0 -100
- libevtx-20251118/libexe/Makefile.in +0 -1050
- libevtx-20251118/libexe/exe_file_header.h +0 -508
- libevtx-20251118/libexe/exe_le_header.h +0 -52
- libevtx-20251118/libexe/exe_mz_header.h +0 -124
- libevtx-20251118/libexe/exe_ne_header.h +0 -56
- libevtx-20251118/libexe/exe_pe_header.h +0 -48
- libevtx-20251118/libexe/exe_section_table.h +0 -93
- libevtx-20251118/libexe/libexe_codepage.h +0 -90
- libevtx-20251118/libexe/libexe_coff_header.c +0 -358
- libevtx-20251118/libexe/libexe_coff_header.h +0 -77
- libevtx-20251118/libexe/libexe_coff_optional_header.c +0 -1257
- libevtx-20251118/libexe/libexe_coff_optional_header.h +0 -72
- libevtx-20251118/libexe/libexe_data_directory_descriptor.h +0 -52
- libevtx-20251118/libexe/libexe_debug.c +0 -532
- libevtx-20251118/libexe/libexe_debug.h +0 -67
- libevtx-20251118/libexe/libexe_debug_data.c +0 -246
- libevtx-20251118/libexe/libexe_debug_data.h +0 -64
- libevtx-20251118/libexe/libexe_definitions.h +0 -163
- libevtx-20251118/libexe/libexe_error.c +0 -111
- libevtx-20251118/libexe/libexe_error.h +0 -74
- libevtx-20251118/libexe/libexe_export_table.c +0 -248
- libevtx-20251118/libexe/libexe_export_table.h +0 -64
- libevtx-20251118/libexe/libexe_extern.h +0 -46
- libevtx-20251118/libexe/libexe_file.c +0 -1693
- libevtx-20251118/libexe/libexe_file.h +0 -165
- libevtx-20251118/libexe/libexe_import_table.c +0 -248
- libevtx-20251118/libexe/libexe_import_table.h +0 -64
- libevtx-20251118/libexe/libexe_io_handle.c +0 -1265
- libevtx-20251118/libexe/libexe_io_handle.h +0 -142
- libevtx-20251118/libexe/libexe_le_header.c +0 -297
- libevtx-20251118/libexe/libexe_le_header.h +0 -69
- libevtx-20251118/libexe/libexe_libbfio.h +0 -58
- libevtx-20251118/libexe/libexe_libcdata.h +0 -54
- libevtx-20251118/libexe/libexe_libcerror.h +0 -50
- libevtx-20251118/libexe/libexe_libclocale.h +0 -50
- libevtx-20251118/libexe/libexe_libcnotify.h +0 -50
- libevtx-20251118/libexe/libexe_libfcache.h +0 -50
- libevtx-20251118/libexe/libexe_libfdata.h +0 -54
- libevtx-20251118/libexe/libexe_libfdatetime.h +0 -56
- libevtx-20251118/libexe/libexe_libuna.h +0 -60
- libevtx-20251118/libexe/libexe_mz_header.c +0 -440
- libevtx-20251118/libexe/libexe_mz_header.h +0 -69
- libevtx-20251118/libexe/libexe_ne_header.c +0 -297
- libevtx-20251118/libexe/libexe_ne_header.h +0 -69
- libevtx-20251118/libexe/libexe_notify.c +0 -120
- libevtx-20251118/libexe/libexe_notify.h +0 -63
- libevtx-20251118/libexe/libexe_section.c +0 -996
- libevtx-20251118/libexe/libexe_section.h +0 -164
- libevtx-20251118/libexe/libexe_section_descriptor.c +0 -320
- libevtx-20251118/libexe/libexe_section_descriptor.h +0 -87
- libevtx-20251118/libexe/libexe_section_io_handle.c +0 -651
- libevtx-20251118/libexe/libexe_section_io_handle.h +0 -111
- libevtx-20251118/libexe/libexe_support.c +0 -430
- libevtx-20251118/libexe/libexe_support.h +0 -82
- libevtx-20251118/libexe/libexe_types.h +0 -49
- libevtx-20251118/libexe/libexe_unused.h +0 -44
- libevtx-20251118/libfcache/Makefile.in +0 -946
- libevtx-20251118/libfcache/libfcache_cache.c +0 -1118
- libevtx-20251118/libfcache/libfcache_cache.h +0 -149
- libevtx-20251118/libfcache/libfcache_cache_value.c +0 -502
- libevtx-20251118/libfcache/libfcache_cache_value.h +0 -132
- libevtx-20251118/libfcache/libfcache_date_time.c +0 -92
- libevtx-20251118/libfcache/libfcache_date_time.h +0 -45
- libevtx-20251118/libfcache/libfcache_definitions.h +0 -58
- libevtx-20251118/libfcache/libfcache_error.c +0 -111
- libevtx-20251118/libfcache/libfcache_error.h +0 -74
- libevtx-20251118/libfcache/libfcache_extern.h +0 -46
- libevtx-20251118/libfcache/libfcache_libcdata.h +0 -54
- libevtx-20251118/libfcache/libfcache_libcerror.h +0 -50
- libevtx-20251118/libfcache/libfcache_support.c +0 -41
- libevtx-20251118/libfcache/libfcache_support.h +0 -47
- libevtx-20251118/libfcache/libfcache_types.h +0 -49
- libevtx-20251118/libfcache/libfcache_unused.h +0 -44
- libevtx-20251118/libfdata/Makefile.in +0 -999
- libevtx-20251118/libfdata/libfdata_area.c +0 -1482
- libevtx-20251118/libfdata/libfdata_area.h +0 -278
- libevtx-20251118/libfdata/libfdata_cache.c +0 -59
- libevtx-20251118/libfdata/libfdata_cache.h +0 -56
- libevtx-20251118/libfdata/libfdata_definitions.h +0 -249
- libevtx-20251118/libfdata/libfdata_error.c +0 -111
- libevtx-20251118/libfdata/libfdata_error.h +0 -74
- libevtx-20251118/libfdata/libfdata_extern.h +0 -46
- libevtx-20251118/libfdata/libfdata_libcdata.h +0 -54
- libevtx-20251118/libfdata/libfdata_libcerror.h +0 -50
- libevtx-20251118/libfdata/libfdata_libcnotify.h +0 -50
- libevtx-20251118/libfdata/libfdata_libfcache.h +0 -50
- libevtx-20251118/libfdata/libfdata_list.c +0 -4426
- libevtx-20251118/libfdata/libfdata_list.h +0 -452
- libevtx-20251118/libfdata/libfdata_list_element.c +0 -824
- libevtx-20251118/libfdata/libfdata_list_element.h +0 -159
- libevtx-20251118/libfdata/libfdata_mapped_range.c +0 -312
- libevtx-20251118/libfdata/libfdata_mapped_range.h +0 -77
- libevtx-20251118/libfdata/libfdata_notify.c +0 -120
- libevtx-20251118/libfdata/libfdata_notify.h +0 -63
- libevtx-20251118/libfdata/libfdata_range.c +0 -358
- libevtx-20251118/libfdata/libfdata_range.h +0 -94
- libevtx-20251118/libfdata/libfdata_range_list.c +0 -1196
- libevtx-20251118/libfdata/libfdata_range_list.h +0 -214
- libevtx-20251118/libfdata/libfdata_segments_array.c +0 -914
- libevtx-20251118/libfdata/libfdata_segments_array.h +0 -94
- libevtx-20251118/libfdata/libfdata_stream.c +0 -2582
- libevtx-20251118/libfdata/libfdata_stream.h +0 -363
- libevtx-20251118/libfdata/libfdata_support.c +0 -41
- libevtx-20251118/libfdata/libfdata_support.h +0 -47
- libevtx-20251118/libfdata/libfdata_types.h +0 -59
- libevtx-20251118/libfdata/libfdata_unused.h +0 -44
- libevtx-20251118/libfdata/libfdata_vector.c +0 -1932
- libevtx-20251118/libfdata/libfdata_vector.h +0 -295
- libevtx-20251118/libfdatetime/Makefile.in +0 -977
- libevtx-20251118/libfdatetime/libfdatetime_date_time_values.c +0 -1906
- libevtx-20251118/libfdatetime/libfdatetime_date_time_values.h +0 -121
- libevtx-20251118/libfdatetime/libfdatetime_definitions.h +0 -121
- libevtx-20251118/libfdatetime/libfdatetime_error.c +0 -111
- libevtx-20251118/libfdatetime/libfdatetime_error.h +0 -74
- libevtx-20251118/libfdatetime/libfdatetime_extern.h +0 -46
- libevtx-20251118/libfdatetime/libfdatetime_fat_date_time.c +0 -1258
- libevtx-20251118/libfdatetime/libfdatetime_fat_date_time.h +0 -172
- libevtx-20251118/libfdatetime/libfdatetime_filetime.c +0 -1465
- libevtx-20251118/libfdatetime/libfdatetime_filetime.h +0 -177
- libevtx-20251118/libfdatetime/libfdatetime_floatingtime.c +0 -1333
- libevtx-20251118/libfdatetime/libfdatetime_floatingtime.h +0 -168
- libevtx-20251118/libfdatetime/libfdatetime_hfs_time.c +0 -1329
- libevtx-20251118/libfdatetime/libfdatetime_hfs_time.h +0 -166
- libevtx-20251118/libfdatetime/libfdatetime_libcerror.h +0 -50
- libevtx-20251118/libfdatetime/libfdatetime_nsf_timedate.c +0 -1373
- libevtx-20251118/libfdatetime/libfdatetime_nsf_timedate.h +0 -177
- libevtx-20251118/libfdatetime/libfdatetime_posix_time.c +0 -1842
- libevtx-20251118/libfdatetime/libfdatetime_posix_time.h +0 -189
- libevtx-20251118/libfdatetime/libfdatetime_support.c +0 -41
- libevtx-20251118/libfdatetime/libfdatetime_support.h +0 -47
- libevtx-20251118/libfdatetime/libfdatetime_systemtime.c +0 -1779
- libevtx-20251118/libfdatetime/libfdatetime_systemtime.h +0 -180
- libevtx-20251118/libfdatetime/libfdatetime_types.h +0 -63
- libevtx-20251118/libfdatetime/libfdatetime_unused.h +0 -44
- libevtx-20251118/libfguid/Makefile.in +0 -927
- libevtx-20251118/libfguid/libfguid_definitions.h +0 -84
- libevtx-20251118/libfguid/libfguid_error.c +0 -111
- libevtx-20251118/libfguid/libfguid_error.h +0 -74
- libevtx-20251118/libfguid/libfguid_extern.h +0 -46
- libevtx-20251118/libfguid/libfguid_identifier.c +0 -2524
- libevtx-20251118/libfguid/libfguid_identifier.h +0 -204
- libevtx-20251118/libfguid/libfguid_libcerror.h +0 -50
- libevtx-20251118/libfguid/libfguid_support.c +0 -41
- libevtx-20251118/libfguid/libfguid_support.h +0 -47
- libevtx-20251118/libfguid/libfguid_types.h +0 -47
- libevtx-20251118/libfguid/libfguid_unused.h +0 -44
- libevtx-20251118/libfvalue/Makefile.in +0 -1036
- libevtx-20251118/libfvalue/libfvalue_binary_data.c +0 -1546
- libevtx-20251118/libfvalue/libfvalue_binary_data.h +0 -114
- libevtx-20251118/libfvalue/libfvalue_codepage.h +0 -103
- libevtx-20251118/libfvalue/libfvalue_data_handle.c +0 -1661
- libevtx-20251118/libfvalue/libfvalue_data_handle.h +0 -195
- libevtx-20251118/libfvalue/libfvalue_definitions.h +0 -350
- libevtx-20251118/libfvalue/libfvalue_error.c +0 -111
- libevtx-20251118/libfvalue/libfvalue_error.h +0 -74
- libevtx-20251118/libfvalue/libfvalue_extern.h +0 -46
- libevtx-20251118/libfvalue/libfvalue_filetime.c +0 -113
- libevtx-20251118/libfvalue/libfvalue_filetime.h +0 -56
- libevtx-20251118/libfvalue/libfvalue_floating_point.c +0 -3456
- libevtx-20251118/libfvalue/libfvalue_floating_point.h +0 -246
- libevtx-20251118/libfvalue/libfvalue_integer.c +0 -2886
- libevtx-20251118/libfvalue/libfvalue_integer.h +0 -261
- libevtx-20251118/libfvalue/libfvalue_libcdata.h +0 -54
- libevtx-20251118/libfvalue/libfvalue_libcerror.h +0 -50
- libevtx-20251118/libfvalue/libfvalue_libcnotify.h +0 -50
- libevtx-20251118/libfvalue/libfvalue_libfdatetime.h +0 -58
- libevtx-20251118/libfvalue/libfvalue_libfguid.h +0 -51
- libevtx-20251118/libfvalue/libfvalue_libfwnt.h +0 -57
- libevtx-20251118/libfvalue/libfvalue_libuna.h +0 -60
- libevtx-20251118/libfvalue/libfvalue_split_utf16_string.c +0 -546
- libevtx-20251118/libfvalue/libfvalue_split_utf16_string.h +0 -114
- libevtx-20251118/libfvalue/libfvalue_split_utf8_string.c +0 -535
- libevtx-20251118/libfvalue/libfvalue_split_utf8_string.h +0 -114
- libevtx-20251118/libfvalue/libfvalue_string.c +0 -3070
- libevtx-20251118/libfvalue/libfvalue_string.h +0 -165
- libevtx-20251118/libfvalue/libfvalue_support.c +0 -41
- libevtx-20251118/libfvalue/libfvalue_support.h +0 -47
- libevtx-20251118/libfvalue/libfvalue_table.c +0 -1357
- libevtx-20251118/libfvalue/libfvalue_table.h +0 -136
- libevtx-20251118/libfvalue/libfvalue_types.h +0 -55
- libevtx-20251118/libfvalue/libfvalue_unused.h +0 -44
- libevtx-20251118/libfvalue/libfvalue_utf16_string.c +0 -300
- libevtx-20251118/libfvalue/libfvalue_utf16_string.h +0 -50
- libevtx-20251118/libfvalue/libfvalue_utf8_string.c +0 -300
- libevtx-20251118/libfvalue/libfvalue_utf8_string.h +0 -50
- libevtx-20251118/libfvalue/libfvalue_value.c +0 -5241
- libevtx-20251118/libfvalue/libfvalue_value.h +0 -753
- libevtx-20251118/libfvalue/libfvalue_value_entry.c +0 -210
- libevtx-20251118/libfvalue/libfvalue_value_entry.h +0 -65
- libevtx-20251118/libfvalue/libfvalue_value_type.c +0 -1183
- libevtx-20251118/libfvalue/libfvalue_value_type.h +0 -100
- libevtx-20251118/libfwevt/Makefile.in +0 -1088
- libevtx-20251118/libfwevt/fwevt_template.h +0 -557
- libevtx-20251118/libfwevt/libfwevt_channel.c +0 -698
- libevtx-20251118/libfwevt/libfwevt_channel.h +0 -110
- libevtx-20251118/libfwevt/libfwevt_data_segment.c +0 -274
- libevtx-20251118/libfwevt/libfwevt_data_segment.h +0 -94
- libevtx-20251118/libfwevt/libfwevt_date_time.c +0 -468
- libevtx-20251118/libfwevt/libfwevt_date_time.h +0 -45
- libevtx-20251118/libfwevt/libfwevt_debug.c +0 -689
- libevtx-20251118/libfwevt/libfwevt_debug.h +0 -70
- libevtx-20251118/libfwevt/libfwevt_definitions.h +0 -168
- libevtx-20251118/libfwevt/libfwevt_error.c +0 -111
- libevtx-20251118/libfwevt/libfwevt_error.h +0 -74
- libevtx-20251118/libfwevt/libfwevt_event.c +0 -545
- libevtx-20251118/libfwevt/libfwevt_event.h +0 -122
- libevtx-20251118/libfwevt/libfwevt_extern.h +0 -46
- libevtx-20251118/libfwevt/libfwevt_floating_point.c +0 -1296
- libevtx-20251118/libfwevt/libfwevt_floating_point.h +0 -77
- libevtx-20251118/libfwevt/libfwevt_integer.c +0 -866
- libevtx-20251118/libfwevt/libfwevt_integer.h +0 -102
- libevtx-20251118/libfwevt/libfwevt_keyword.c +0 -378
- libevtx-20251118/libfwevt/libfwevt_keyword.h +0 -70
- libevtx-20251118/libfwevt/libfwevt_level.c +0 -377
- libevtx-20251118/libfwevt/libfwevt_level.h +0 -70
- libevtx-20251118/libfwevt/libfwevt_libcdata.h +0 -54
- libevtx-20251118/libfwevt/libfwevt_libcerror.h +0 -50
- libevtx-20251118/libfwevt/libfwevt_libcnotify.h +0 -50
- libevtx-20251118/libfwevt/libfwevt_libfdatetime.h +0 -56
- libevtx-20251118/libfwevt/libfwevt_libfguid.h +0 -49
- libevtx-20251118/libfwevt/libfwevt_libfwnt.h +0 -58
- libevtx-20251118/libfwevt/libfwevt_libuna.h +0 -60
- libevtx-20251118/libfwevt/libfwevt_manifest.c +0 -839
- libevtx-20251118/libfwevt/libfwevt_manifest.h +0 -97
- libevtx-20251118/libfwevt/libfwevt_map.c +0 -275
- libevtx-20251118/libfwevt/libfwevt_map.h +0 -70
- libevtx-20251118/libfwevt/libfwevt_notify.c +0 -120
- libevtx-20251118/libfwevt/libfwevt_notify.h +0 -63
- libevtx-20251118/libfwevt/libfwevt_opcode.c +0 -378
- libevtx-20251118/libfwevt/libfwevt_opcode.h +0 -70
- libevtx-20251118/libfwevt/libfwevt_provider.c +0 -4270
- libevtx-20251118/libfwevt/libfwevt_provider.h +0 -325
- libevtx-20251118/libfwevt/libfwevt_support.c +0 -41
- libevtx-20251118/libfwevt/libfwevt_support.h +0 -47
- libevtx-20251118/libfwevt/libfwevt_task.c +0 -402
- libevtx-20251118/libfwevt/libfwevt_task.h +0 -70
- libevtx-20251118/libfwevt/libfwevt_template.c +0 -1616
- libevtx-20251118/libfwevt/libfwevt_template.h +0 -194
- libevtx-20251118/libfwevt/libfwevt_template_item.c +0 -869
- libevtx-20251118/libfwevt/libfwevt_template_item.h +0 -145
- libevtx-20251118/libfwevt/libfwevt_types.h +0 -75
- libevtx-20251118/libfwevt/libfwevt_unused.h +0 -44
- libevtx-20251118/libfwevt/libfwevt_xml_document.c +0 -6739
- libevtx-20251118/libfwevt/libfwevt_xml_document.h +0 -311
- libevtx-20251118/libfwevt/libfwevt_xml_string.c +0 -984
- libevtx-20251118/libfwevt/libfwevt_xml_string.h +0 -72
- libevtx-20251118/libfwevt/libfwevt_xml_tag.c +0 -4655
- libevtx-20251118/libfwevt/libfwevt_xml_tag.h +0 -305
- libevtx-20251118/libfwevt/libfwevt_xml_template_value.c +0 -412
- libevtx-20251118/libfwevt/libfwevt_xml_template_value.h +0 -109
- libevtx-20251118/libfwevt/libfwevt_xml_token.c +0 -236
- libevtx-20251118/libfwevt/libfwevt_xml_token.h +0 -67
- libevtx-20251118/libfwevt/libfwevt_xml_value.c +0 -3611
- libevtx-20251118/libfwevt/libfwevt_xml_value.h +0 -266
- libevtx-20251118/libfwnt/Makefile.in +0 -1004
- libevtx-20251118/libfwnt/libfwnt_access_control_entry.c +0 -764
- libevtx-20251118/libfwnt/libfwnt_access_control_entry.h +0 -116
- libevtx-20251118/libfwnt/libfwnt_access_control_list.c +0 -518
- libevtx-20251118/libfwnt/libfwnt_access_control_list.h +0 -93
- libevtx-20251118/libfwnt/libfwnt_bit_stream.c +0 -308
- libevtx-20251118/libfwnt/libfwnt_bit_stream.h +0 -85
- libevtx-20251118/libfwnt/libfwnt_debug.c +0 -355
- libevtx-20251118/libfwnt/libfwnt_debug.h +0 -53
- libevtx-20251118/libfwnt/libfwnt_definitions.h +0 -112
- libevtx-20251118/libfwnt/libfwnt_error.c +0 -111
- libevtx-20251118/libfwnt/libfwnt_error.h +0 -74
- libevtx-20251118/libfwnt/libfwnt_extern.h +0 -46
- libevtx-20251118/libfwnt/libfwnt_huffman_tree.c +0 -589
- libevtx-20251118/libfwnt/libfwnt_huffman_tree.h +0 -79
- libevtx-20251118/libfwnt/libfwnt_libcdata.h +0 -54
- libevtx-20251118/libfwnt/libfwnt_libcerror.h +0 -50
- libevtx-20251118/libfwnt/libfwnt_libcnotify.h +0 -50
- libevtx-20251118/libfwnt/libfwnt_locale_identifier.c +0 -470
- libevtx-20251118/libfwnt/libfwnt_locale_identifier.h +0 -60
- libevtx-20251118/libfwnt/libfwnt_lznt1.c +0 -560
- libevtx-20251118/libfwnt/libfwnt_lznt1.h +0 -57
- libevtx-20251118/libfwnt/libfwnt_lzx.c +0 -1465
- libevtx-20251118/libfwnt/libfwnt_lzx.h +0 -95
- libevtx-20251118/libfwnt/libfwnt_lzxpress.c +0 -1041
- libevtx-20251118/libfwnt/libfwnt_lzxpress.h +0 -86
- libevtx-20251118/libfwnt/libfwnt_notify.c +0 -120
- libevtx-20251118/libfwnt/libfwnt_notify.h +0 -63
- libevtx-20251118/libfwnt/libfwnt_security_descriptor.c +0 -1028
- libevtx-20251118/libfwnt/libfwnt_security_descriptor.h +0 -116
- libevtx-20251118/libfwnt/libfwnt_security_identifier.c +0 -1176
- libevtx-20251118/libfwnt/libfwnt_security_identifier.h +0 -166
- libevtx-20251118/libfwnt/libfwnt_support.c +0 -41
- libevtx-20251118/libfwnt/libfwnt_support.h +0 -47
- libevtx-20251118/libfwnt/libfwnt_types.h +0 -53
- libevtx-20251118/libfwnt/libfwnt_unused.h +0 -44
- libevtx-20251118/libregf/Makefile.in +0 -1116
- libevtx-20251118/libregf/libregf_checksum.c +0 -295
- libevtx-20251118/libregf/libregf_checksum.h +0 -46
- libevtx-20251118/libregf/libregf_codepage.h +0 -90
- libevtx-20251118/libregf/libregf_data_block_key.c +0 -251
- libevtx-20251118/libregf/libregf_data_block_key.h +0 -66
- libevtx-20251118/libregf/libregf_data_block_stream.c +0 -110
- libevtx-20251118/libregf/libregf_data_block_stream.h +0 -59
- libevtx-20251118/libregf/libregf_data_type.c +0 -85
- libevtx-20251118/libregf/libregf_data_type.h +0 -64
- libevtx-20251118/libregf/libregf_debug.c +0 -596
- libevtx-20251118/libregf/libregf_debug.h +0 -85
- libevtx-20251118/libregf/libregf_definitions.h +0 -163
- libevtx-20251118/libregf/libregf_dirty_vector.c +0 -385
- libevtx-20251118/libregf/libregf_dirty_vector.h +0 -71
- libevtx-20251118/libregf/libregf_error.c +0 -111
- libevtx-20251118/libregf/libregf_error.h +0 -74
- libevtx-20251118/libregf/libregf_extern.h +0 -46
- libevtx-20251118/libregf/libregf_file.c +0 -2122
- libevtx-20251118/libregf/libregf_file.h +0 -204
- libevtx-20251118/libregf/libregf_file_header.c +0 -453
- libevtx-20251118/libregf/libregf_file_header.h +0 -84
- libevtx-20251118/libregf/libregf_hive_bin.c +0 -733
- libevtx-20251118/libregf/libregf_hive_bin.h +0 -105
- libevtx-20251118/libregf/libregf_hive_bin_cell.c +0 -135
- libevtx-20251118/libregf/libregf_hive_bin_cell.h +0 -68
- libevtx-20251118/libregf/libregf_hive_bin_header.c +0 -377
- libevtx-20251118/libregf/libregf_hive_bin_header.h +0 -73
- libevtx-20251118/libregf/libregf_hive_bins_list.c +0 -766
- libevtx-20251118/libregf/libregf_hive_bins_list.h +0 -116
- libevtx-20251118/libregf/libregf_io_handle.c +0 -178
- libevtx-20251118/libregf/libregf_io_handle.h +0 -82
- libevtx-20251118/libregf/libregf_key.c +0 -3660
- libevtx-20251118/libregf/libregf_key.h +0 -320
- libevtx-20251118/libregf/libregf_key_descriptor.c +0 -131
- libevtx-20251118/libregf/libregf_key_descriptor.h +0 -60
- libevtx-20251118/libregf/libregf_key_item.c +0 -2730
- libevtx-20251118/libregf/libregf_key_item.h +0 -279
- libevtx-20251118/libregf/libregf_key_tree.c +0 -515
- libevtx-20251118/libregf/libregf_key_tree.h +0 -63
- libevtx-20251118/libregf/libregf_libbfio.h +0 -58
- libevtx-20251118/libregf/libregf_libcdata.h +0 -54
- libevtx-20251118/libregf/libregf_libcerror.h +0 -50
- libevtx-20251118/libregf/libregf_libclocale.h +0 -50
- libevtx-20251118/libregf/libregf_libcnotify.h +0 -50
- libevtx-20251118/libregf/libregf_libcthreads.h +0 -64
- libevtx-20251118/libregf/libregf_libfcache.h +0 -50
- libevtx-20251118/libregf/libregf_libfdata.h +0 -54
- libevtx-20251118/libregf/libregf_libfdatetime.h +0 -56
- libevtx-20251118/libregf/libregf_libfwnt.h +0 -58
- libevtx-20251118/libregf/libregf_libuna.h +0 -60
- libevtx-20251118/libregf/libregf_multi_string.c +0 -897
- libevtx-20251118/libregf/libregf_multi_string.h +0 -128
- libevtx-20251118/libregf/libregf_named_key.c +0 -1355
- libevtx-20251118/libregf/libregf_named_key.h +0 -172
- libevtx-20251118/libregf/libregf_notify.c +0 -120
- libevtx-20251118/libregf/libregf_notify.h +0 -63
- libevtx-20251118/libregf/libregf_security_key.c +0 -447
- libevtx-20251118/libregf/libregf_security_key.h +0 -68
- libevtx-20251118/libregf/libregf_sub_key_list.c +0 -441
- libevtx-20251118/libregf/libregf_sub_key_list.h +0 -69
- libevtx-20251118/libregf/libregf_support.c +0 -429
- libevtx-20251118/libregf/libregf_support.h +0 -82
- libevtx-20251118/libregf/libregf_types.h +0 -53
- libevtx-20251118/libregf/libregf_unused.h +0 -44
- libevtx-20251118/libregf/libregf_value.c +0 -1836
- libevtx-20251118/libregf/libregf_value.h +0 -211
- libevtx-20251118/libregf/libregf_value_item.c +0 -3004
- libevtx-20251118/libregf/libregf_value_item.h +0 -254
- libevtx-20251118/libregf/libregf_value_key.c +0 -1512
- libevtx-20251118/libregf/libregf_value_key.h +0 -160
- libevtx-20251118/libregf/regf_cell_values.h +0 -263
- libevtx-20251118/libregf/regf_file_header.h +0 -114
- libevtx-20251118/libregf/regf_hive_bin.h +0 -81
- libevtx-20251118/libuna/Makefile.in +0 -1346
- libevtx-20251118/libuna/libuna_base16_stream.c +0 -1511
- libevtx-20251118/libuna/libuna_base16_stream.h +0 -93
- libevtx-20251118/libuna/libuna_base32_stream.c +0 -3035
- libevtx-20251118/libuna/libuna_base32_stream.h +0 -131
- libevtx-20251118/libuna/libuna_base64_stream.c +0 -2832
- libevtx-20251118/libuna/libuna_base64_stream.h +0 -131
- libevtx-20251118/libuna/libuna_byte_stream.c +0 -633
- libevtx-20251118/libuna/libuna_byte_stream.h +0 -104
- libevtx-20251118/libuna/libuna_codepage_iso_8859_10.c +0 -73
- libevtx-20251118/libuna/libuna_codepage_iso_8859_10.h +0 -48
- libevtx-20251118/libuna/libuna_codepage_iso_8859_13.c +0 -81
- libevtx-20251118/libuna/libuna_codepage_iso_8859_13.h +0 -48
- libevtx-20251118/libuna/libuna_codepage_iso_8859_14.c +0 -66
- libevtx-20251118/libuna/libuna_codepage_iso_8859_14.h +0 -51
- libevtx-20251118/libuna/libuna_codepage_iso_8859_15.c +0 -46
- libevtx-20251118/libuna/libuna_codepage_iso_8859_15.h +0 -45
- libevtx-20251118/libuna/libuna_codepage_iso_8859_16.c +0 -78
- libevtx-20251118/libuna/libuna_codepage_iso_8859_16.h +0 -57
- libevtx-20251118/libuna/libuna_codepage_iso_8859_2.c +0 -82
- libevtx-20251118/libuna/libuna_codepage_iso_8859_2.h +0 -51
- libevtx-20251118/libuna/libuna_codepage_iso_8859_3.c +0 -79
- libevtx-20251118/libuna/libuna_codepage_iso_8859_3.h +0 -57
- libevtx-20251118/libuna/libuna_codepage_iso_8859_4.c +0 -80
- libevtx-20251118/libuna/libuna_codepage_iso_8859_4.h +0 -48
- libevtx-20251118/libuna/libuna_codepage_iso_8859_5.c +0 -62
- libevtx-20251118/libuna/libuna_codepage_iso_8859_5.h +0 -45
- libevtx-20251118/libuna/libuna_codepage_iso_8859_6.c +0 -58
- libevtx-20251118/libuna/libuna_codepage_iso_8859_6.h +0 -45
- libevtx-20251118/libuna/libuna_codepage_iso_8859_7.c +0 -66
- libevtx-20251118/libuna/libuna_codepage_iso_8859_7.h +0 -48
- libevtx-20251118/libuna/libuna_codepage_iso_8859_8.c +0 -61
- libevtx-20251118/libuna/libuna_codepage_iso_8859_8.h +0 -48
- libevtx-20251118/libuna/libuna_codepage_iso_8859_9.c +0 -50
- libevtx-20251118/libuna/libuna_codepage_iso_8859_9.h +0 -45
- libevtx-20251118/libuna/libuna_codepage_koi8_r.c +0 -392
- libevtx-20251118/libuna/libuna_codepage_koi8_r.h +0 -54
- libevtx-20251118/libuna/libuna_codepage_koi8_u.c +0 -424
- libevtx-20251118/libuna/libuna_codepage_koi8_u.h +0 -54
- libevtx-20251118/libuna/libuna_codepage_mac_arabic.c +0 -352
- libevtx-20251118/libuna/libuna_codepage_mac_arabic.h +0 -54
- libevtx-20251118/libuna/libuna_codepage_mac_celtic.c +0 -395
- libevtx-20251118/libuna/libuna_codepage_mac_celtic.h +0 -54
- libevtx-20251118/libuna/libuna_codepage_mac_centraleurroman.c +0 -319
- libevtx-20251118/libuna/libuna_codepage_mac_centraleurroman.h +0 -54
- libevtx-20251118/libuna/libuna_codepage_mac_croatian.c +0 -378
- libevtx-20251118/libuna/libuna_codepage_mac_croatian.h +0 -54
- libevtx-20251118/libuna/libuna_codepage_mac_cyrillic.c +0 -325
- libevtx-20251118/libuna/libuna_codepage_mac_cyrillic.h +0 -54
- libevtx-20251118/libuna/libuna_codepage_mac_dingbats.c +0 -347
- libevtx-20251118/libuna/libuna_codepage_mac_dingbats.h +0 -54
- libevtx-20251118/libuna/libuna_codepage_mac_farsi.c +0 -372
- libevtx-20251118/libuna/libuna_codepage_mac_farsi.h +0 -54
- libevtx-20251118/libuna/libuna_codepage_mac_gaelic.c +0 -437
- libevtx-20251118/libuna/libuna_codepage_mac_gaelic.h +0 -54
- libevtx-20251118/libuna/libuna_codepage_mac_greek.c +0 -305
- libevtx-20251118/libuna/libuna_codepage_mac_greek.h +0 -54
- libevtx-20251118/libuna/libuna_codepage_mac_icelandic.c +0 -381
- libevtx-20251118/libuna/libuna_codepage_mac_icelandic.h +0 -54
- libevtx-20251118/libuna/libuna_codepage_mac_inuit.c +0 -380
- libevtx-20251118/libuna/libuna_codepage_mac_inuit.h +0 -54
- libevtx-20251118/libuna/libuna_codepage_mac_roman.c +0 -387
- libevtx-20251118/libuna/libuna_codepage_mac_roman.h +0 -54
- libevtx-20251118/libuna/libuna_codepage_mac_romanian.c +0 -396
- libevtx-20251118/libuna/libuna_codepage_mac_romanian.h +0 -54
- libevtx-20251118/libuna/libuna_codepage_mac_russian.c +0 -317
- libevtx-20251118/libuna/libuna_codepage_mac_russian.h +0 -54
- libevtx-20251118/libuna/libuna_codepage_mac_symbol.c +0 -537
- libevtx-20251118/libuna/libuna_codepage_mac_symbol.h +0 -59
- libevtx-20251118/libuna/libuna_codepage_mac_thai.c +0 -330
- libevtx-20251118/libuna/libuna_codepage_mac_thai.h +0 -59
- libevtx-20251118/libuna/libuna_codepage_mac_turkish.c +0 -397
- libevtx-20251118/libuna/libuna_codepage_mac_turkish.h +0 -54
- libevtx-20251118/libuna/libuna_codepage_mac_ukrainian.c +0 -321
- libevtx-20251118/libuna/libuna_codepage_mac_ukrainian.h +0 -54
- libevtx-20251118/libuna/libuna_codepage_windows_1250.c +0 -313
- libevtx-20251118/libuna/libuna_codepage_windows_1250.h +0 -54
- libevtx-20251118/libuna/libuna_codepage_windows_1251.c +0 -301
- libevtx-20251118/libuna/libuna_codepage_windows_1251.h +0 -54
- libevtx-20251118/libuna/libuna_codepage_windows_1252.c +0 -287
- libevtx-20251118/libuna/libuna_codepage_windows_1252.h +0 -54
- libevtx-20251118/libuna/libuna_codepage_windows_1253.c +0 -291
- libevtx-20251118/libuna/libuna_codepage_windows_1253.h +0 -54
- libevtx-20251118/libuna/libuna_codepage_windows_1254.c +0 -348
- libevtx-20251118/libuna/libuna_codepage_windows_1254.h +0 -54
- libevtx-20251118/libuna/libuna_codepage_windows_1255.c +0 -328
- libevtx-20251118/libuna/libuna_codepage_windows_1255.h +0 -54
- libevtx-20251118/libuna/libuna_codepage_windows_1256.c +0 -372
- libevtx-20251118/libuna/libuna_codepage_windows_1256.h +0 -54
- libevtx-20251118/libuna/libuna_codepage_windows_1257.c +0 -303
- libevtx-20251118/libuna/libuna_codepage_windows_1257.h +0 -54
- libevtx-20251118/libuna/libuna_codepage_windows_1258.c +0 -349
- libevtx-20251118/libuna/libuna_codepage_windows_1258.h +0 -54
- libevtx-20251118/libuna/libuna_codepage_windows_874.c +0 -274
- libevtx-20251118/libuna/libuna_codepage_windows_874.h +0 -54
- libevtx-20251118/libuna/libuna_codepage_windows_932.c +0 -4913
- libevtx-20251118/libuna/libuna_codepage_windows_932.h +0 -59
- libevtx-20251118/libuna/libuna_codepage_windows_936.c +0 -7371
- libevtx-20251118/libuna/libuna_codepage_windows_936.h +0 -59
- libevtx-20251118/libuna/libuna_codepage_windows_949.c +0 -8168
- libevtx-20251118/libuna/libuna_codepage_windows_949.h +0 -59
- libevtx-20251118/libuna/libuna_codepage_windows_950.c +0 -6390
- libevtx-20251118/libuna/libuna_codepage_windows_950.h +0 -59
- libevtx-20251118/libuna/libuna_definitions.h +0 -436
- libevtx-20251118/libuna/libuna_error.c +0 -111
- libevtx-20251118/libuna/libuna_error.h +0 -74
- libevtx-20251118/libuna/libuna_extern.h +0 -46
- libevtx-20251118/libuna/libuna_libcerror.h +0 -50
- libevtx-20251118/libuna/libuna_scsu.c +0 -64
- libevtx-20251118/libuna/libuna_scsu.h +0 -45
- libevtx-20251118/libuna/libuna_support.c +0 -39
- libevtx-20251118/libuna/libuna_support.h +0 -49
- libevtx-20251118/libuna/libuna_types.h +0 -53
- libevtx-20251118/libuna/libuna_unicode_character.c +0 -5784
- libevtx-20251118/libuna/libuna_unicode_character.h +0 -260
- libevtx-20251118/libuna/libuna_unused.h +0 -44
- libevtx-20251118/libuna/libuna_url_stream.c +0 -584
- libevtx-20251118/libuna/libuna_url_stream.h +0 -71
- libevtx-20251118/libuna/libuna_utf16_stream.c +0 -815
- libevtx-20251118/libuna/libuna_utf16_stream.h +0 -109
- libevtx-20251118/libuna/libuna_utf16_string.c +0 -3950
- libevtx-20251118/libuna/libuna_utf16_string.h +0 -325
- libevtx-20251118/libuna/libuna_utf32_stream.c +0 -819
- libevtx-20251118/libuna/libuna_utf32_stream.h +0 -109
- libevtx-20251118/libuna/libuna_utf32_string.c +0 -3808
- libevtx-20251118/libuna/libuna_utf32_string.h +0 -321
- libevtx-20251118/libuna/libuna_utf7_stream.c +0 -628
- libevtx-20251118/libuna/libuna_utf7_stream.h +0 -98
- libevtx-20251118/libuna/libuna_utf8_stream.c +0 -748
- libevtx-20251118/libuna/libuna_utf8_stream.h +0 -105
- libevtx-20251118/libuna/libuna_utf8_string.c +0 -4092
- libevtx-20251118/libuna/libuna_utf8_string.h +0 -329
- libevtx-20251118/libwrc/Makefile.in +0 -1113
- libevtx-20251118/libwrc/libwrc_codepage.h +0 -90
- libevtx-20251118/libwrc/libwrc_data_descriptor.c +0 -295
- libevtx-20251118/libwrc/libwrc_data_descriptor.h +0 -73
- libevtx-20251118/libwrc/libwrc_debug.c +0 -324
- libevtx-20251118/libwrc/libwrc_debug.h +0 -59
- libevtx-20251118/libwrc/libwrc_definitions.h +0 -144
- libevtx-20251118/libwrc/libwrc_error.c +0 -111
- libevtx-20251118/libwrc/libwrc_error.h +0 -74
- libevtx-20251118/libwrc/libwrc_extern.h +0 -46
- libevtx-20251118/libwrc/libwrc_io_handle.c +0 -173
- libevtx-20251118/libwrc/libwrc_io_handle.h +0 -74
- libevtx-20251118/libwrc/libwrc_language_entry.c +0 -307
- libevtx-20251118/libwrc/libwrc_language_entry.h +0 -88
- libevtx-20251118/libwrc/libwrc_language_table.c +0 -459
- libevtx-20251118/libwrc/libwrc_language_table.h +0 -87
- libevtx-20251118/libwrc/libwrc_libbfio.h +0 -58
- libevtx-20251118/libwrc/libwrc_libcdata.h +0 -54
- libevtx-20251118/libwrc/libwrc_libcerror.h +0 -50
- libevtx-20251118/libwrc/libwrc_libclocale.h +0 -50
- libevtx-20251118/libwrc/libwrc_libcnotify.h +0 -50
- libevtx-20251118/libwrc/libwrc_libfcache.h +0 -50
- libevtx-20251118/libwrc/libwrc_libfdata.h +0 -54
- libevtx-20251118/libwrc/libwrc_libfguid.h +0 -49
- libevtx-20251118/libwrc/libwrc_libfvalue.h +0 -60
- libevtx-20251118/libwrc/libwrc_libfwnt.h +0 -58
- libevtx-20251118/libwrc/libwrc_libuna.h +0 -60
- libevtx-20251118/libwrc/libwrc_manifest_resource.c +0 -430
- libevtx-20251118/libwrc/libwrc_manifest_resource.h +0 -97
- libevtx-20251118/libwrc/libwrc_manifest_values.c +0 -242
- libevtx-20251118/libwrc/libwrc_manifest_values.h +0 -50
- libevtx-20251118/libwrc/libwrc_message_table_resource.c +0 -995
- libevtx-20251118/libwrc/libwrc_message_table_resource.h +0 -119
- libevtx-20251118/libwrc/libwrc_message_table_values.c +0 -510
- libevtx-20251118/libwrc/libwrc_message_table_values.h +0 -51
- libevtx-20251118/libwrc/libwrc_mui_resource.c +0 -2478
- libevtx-20251118/libwrc/libwrc_mui_resource.h +0 -209
- libevtx-20251118/libwrc/libwrc_mui_values.c +0 -1384
- libevtx-20251118/libwrc/libwrc_mui_values.h +0 -106
- libevtx-20251118/libwrc/libwrc_notify.c +0 -120
- libevtx-20251118/libwrc/libwrc_notify.h +0 -63
- libevtx-20251118/libwrc/libwrc_resource.c +0 -1407
- libevtx-20251118/libwrc/libwrc_resource.h +0 -158
- libevtx-20251118/libwrc/libwrc_resource_item.c +0 -892
- libevtx-20251118/libwrc/libwrc_resource_item.h +0 -161
- libevtx-20251118/libwrc/libwrc_resource_node_entry.c +0 -962
- libevtx-20251118/libwrc/libwrc_resource_node_entry.h +0 -140
- libevtx-20251118/libwrc/libwrc_resource_node_header.c +0 -347
- libevtx-20251118/libwrc/libwrc_resource_node_header.h +0 -77
- libevtx-20251118/libwrc/libwrc_resource_node_tree.c +0 -559
- libevtx-20251118/libwrc/libwrc_resource_node_tree.h +0 -50
- libevtx-20251118/libwrc/libwrc_stream.c +0 -1841
- libevtx-20251118/libwrc/libwrc_stream.h +0 -190
- libevtx-20251118/libwrc/libwrc_string_table_resource.c +0 -809
- libevtx-20251118/libwrc/libwrc_string_table_resource.h +0 -119
- libevtx-20251118/libwrc/libwrc_string_values.c +0 -329
- libevtx-20251118/libwrc/libwrc_string_values.h +0 -51
- libevtx-20251118/libwrc/libwrc_support.c +0 -102
- libevtx-20251118/libwrc/libwrc_support.h +0 -62
- libevtx-20251118/libwrc/libwrc_table_entry.c +0 -463
- libevtx-20251118/libwrc/libwrc_table_entry.h +0 -97
- libevtx-20251118/libwrc/libwrc_types.h +0 -61
- libevtx-20251118/libwrc/libwrc_unused.h +0 -44
- libevtx-20251118/libwrc/libwrc_version_information_resource.c +0 -1927
- libevtx-20251118/libwrc/libwrc_version_information_resource.h +0 -118
- libevtx-20251118/libwrc/libwrc_version_values.c +0 -1967
- libevtx-20251118/libwrc/libwrc_version_values.h +0 -116
- libevtx-20251118/libwrc/wrc_data_descriptor.h +0 -52
- libevtx-20251118/libwrc/wrc_message_table_resource.h +0 -72
- libevtx-20251118/libwrc/wrc_mui_resource.h +0 -93
- libevtx-20251118/libwrc/wrc_resource_node.h +0 -88
- libevtx-20251118/libwrc/wrc_version_information_resource.h +0 -57
- libevtx-20251118/ltmain.sh +0 -11517
- libevtx-20251118/m4/common.m4 +0 -634
- libevtx-20251118/m4/libcdirectory.m4 +0 -212
- libevtx-20251118/m4/libcfile.m4 +0 -317
- libevtx-20251118/m4/libclocale.m4 +0 -242
- libevtx-20251118/m4/libcpath.m4 +0 -274
- libevtx-20251118/m4/libtool.m4 +0 -8491
- libevtx-20251118/m4/ltoptions.m4 +0 -467
- libevtx-20251118/m4/ltsugar.m4 +0 -124
- libevtx-20251118/m4/ltversion.m4 +0 -24
- libevtx-20251118/m4/lt~obsolete.m4 +0 -99
- libevtx-20251118/m4/pthread.m4 +0 -108
- libevtx-20251118/m4/python.m4 +0 -208
- libevtx-20251118/m4/tests.m4 +0 -33
- libevtx-20251118/m4/types.m4 +0 -133
- libevtx-20251118/manuals/Makefile.am +0 -14
- libevtx-20251118/manuals/Makefile.in +0 -873
- libevtx-20251118/manuals/evtxexport.1 +0 -89
- libevtx-20251118/manuals/evtxinfo.1 +0 -56
- libevtx-20251118/manuals/libevtx.3 +0 -215
- libevtx-20251118/missing +0 -236
- libevtx-20251118/msvscpp/Makefile.in +0 -789
- libevtx-20251118/ossfuzz/Makefile.in +0 -1022
- libevtx-20251118/ossfuzz/file_fuzzer.cc +0 -99
- libevtx-20251118/ossfuzz/ossfuzz_libbfio.h +0 -58
- libevtx-20251118/ossfuzz/ossfuzz_libevtx.h +0 -30
- libevtx-20251118/ossfuzz/record_fuzzer.cc +0 -121
- libevtx-20251118/po/Makevars +0 -45
- libevtx-20251118/pyevtx/Makefile.am +0 -56
- libevtx-20251118/pyevtx/Makefile.in +0 -1145
- libevtx-20251118/pyevtx/pyevtx.c +0 -742
- libevtx-20251118/pyevtx/pyevtx.h +0 -71
- libevtx-20251118/pyevtx/pyevtx_codepage.c +0 -138
- libevtx-20251118/pyevtx/pyevtx_codepage.h +0 -42
- libevtx-20251118/pyevtx/pyevtx_datetime.c +0 -691
- libevtx-20251118/pyevtx/pyevtx_datetime.h +0 -65
- libevtx-20251118/pyevtx/pyevtx_error.c +0 -422
- libevtx-20251118/pyevtx/pyevtx_error.h +0 -60
- libevtx-20251118/pyevtx/pyevtx_event_levels.c +0 -334
- libevtx-20251118/pyevtx/pyevtx_event_levels.h +0 -63
- libevtx-20251118/pyevtx/pyevtx_file.c +0 -1774
- libevtx-20251118/pyevtx/pyevtx_file.h +0 -145
- libevtx-20251118/pyevtx/pyevtx_file_flags.c +0 -292
- libevtx-20251118/pyevtx/pyevtx_file_flags.h +0 -63
- libevtx-20251118/pyevtx/pyevtx_file_object_io_handle.c +0 -1524
- libevtx-20251118/pyevtx/pyevtx_file_object_io_handle.h +0 -141
- libevtx-20251118/pyevtx/pyevtx_integer.c +0 -399
- libevtx-20251118/pyevtx/pyevtx_integer.h +0 -56
- libevtx-20251118/pyevtx/pyevtx_libbfio.h +0 -54
- libevtx-20251118/pyevtx/pyevtx_libcerror.h +0 -50
- libevtx-20251118/pyevtx/pyevtx_libclocale.h +0 -50
- libevtx-20251118/pyevtx/pyevtx_libevtx.h +0 -30
- libevtx-20251118/pyevtx/pyevtx_python.h +0 -83
- libevtx-20251118/pyevtx/pyevtx_record.c +0 -2237
- libevtx-20251118/pyevtx/pyevtx_record.h +0 -155
- libevtx-20251118/pyevtx/pyevtx_records.c +0 -452
- libevtx-20251118/pyevtx/pyevtx_records.h +0 -95
- libevtx-20251118/pyevtx/pyevtx_strings.c +0 -451
- libevtx-20251118/pyevtx/pyevtx_strings.h +0 -95
- libevtx-20251118/pyevtx/pyevtx_unused.h +0 -44
- libevtx-20251118/pyproject.toml +0 -4
- libevtx-20251118/setup.cfg +0 -16
- libevtx-20251118/setup.cfg.in +0 -16
- libevtx-20251118/setup.py +0 -293
- libevtx-20251118/test-driver +0 -160
- libevtx-20251118/tests/Makefile.am +0 -395
- libevtx-20251118/tests/Makefile.in +0 -2033
- libevtx-20251118/tests/evtx_test_chunk.c +0 -567
- libevtx-20251118/tests/evtx_test_chunks_table.c +0 -112
- libevtx-20251118/tests/evtx_test_error.c +0 -150
- libevtx-20251118/tests/evtx_test_file.c +0 -2239
- libevtx-20251118/tests/evtx_test_functions.c +0 -562
- libevtx-20251118/tests/evtx_test_functions.h +0 -66
- libevtx-20251118/tests/evtx_test_getopt.c +0 -190
- libevtx-20251118/tests/evtx_test_getopt.h +0 -68
- libevtx-20251118/tests/evtx_test_io_handle.c +0 -443
- libevtx-20251118/tests/evtx_test_libbfio.h +0 -58
- libevtx-20251118/tests/evtx_test_libcerror.h +0 -50
- libevtx-20251118/tests/evtx_test_libclocale.h +0 -50
- libevtx-20251118/tests/evtx_test_libcnotify.h +0 -50
- libevtx-20251118/tests/evtx_test_libevtx.h +0 -30
- libevtx-20251118/tests/evtx_test_libuna.h +0 -60
- libevtx-20251118/tests/evtx_test_macros.h +0 -257
- libevtx-20251118/tests/evtx_test_memory.c +0 -177
- libevtx-20251118/tests/evtx_test_memory.h +0 -52
- libevtx-20251118/tests/evtx_test_notify.c +0 -229
- libevtx-20251118/tests/evtx_test_record.c +0 -178
- libevtx-20251118/tests/evtx_test_record_values.c +0 -3802
- libevtx-20251118/tests/evtx_test_support.c +0 -796
- libevtx-20251118/tests/evtx_test_template_definition.c +0 -305
- libevtx-20251118/tests/evtx_test_tools_info_handle.c +0 -299
- libevtx-20251118/tests/evtx_test_tools_message_handle.c +0 -299
- libevtx-20251118/tests/evtx_test_tools_message_string.c +0 -304
- libevtx-20251118/tests/evtx_test_tools_output.c +0 -105
- libevtx-20251118/tests/evtx_test_tools_path_handle.c +0 -299
- libevtx-20251118/tests/evtx_test_tools_registry_file.c +0 -299
- libevtx-20251118/tests/evtx_test_tools_resource_file.c +0 -304
- libevtx-20251118/tests/evtx_test_tools_signal.c +0 -213
- libevtx-20251118/tests/evtx_test_unused.h +0 -50
- libevtx-20251118/tests/pyevtx_test_file.py +0 -215
- libevtx-20251118/tests/pyevtx_test_support.py +0 -111
- libevtx-20251118/tests/test_evtxexport.sh +0 -147
- libevtx-20251118/tests/test_evtxinfo.sh +0 -146
- libevtx-20251118/tests/test_library.sh +0 -193
- libevtx-20251118/tests/test_manpage.sh +0 -98
- libevtx-20251118/tests/test_python_module.sh +0 -195
- libevtx-20251118/tests/test_runner.sh +0 -1148
- libevtx-20251118/tests/test_tools.sh +0 -193
- {libevtx-20251118 → libevtx_python-20260705}/ABOUT-NLS +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/COPYING +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/COPYING.LESSER +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/ChangeLog +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/NEWS +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/common/Makefile.am +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/config.rpath +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/dpkg/changelog.in +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/dpkg/libevtx-dev.install +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/dpkg/libevtx-python3.install +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/dpkg/libevtx-tools.install +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/dpkg/libevtx.install +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/dpkg/source/format +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/include/Makefile.am +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/libbfio/Makefile.am +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/libcdata/Makefile.am +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/libcdirectory/Makefile.am +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/libcerror/Makefile.am +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/libcfile/Makefile.am +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/libclocale/Makefile.am +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/libcnotify/Makefile.am +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/libcpath/Makefile.am +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/libcsplit/Makefile.am +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/libcthreads/Makefile.am +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/libevtx/Makefile.am +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/libevtx.pc.in +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/libevtx.spec.in +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/libexe/Makefile.am +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/libfcache/Makefile.am +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/libfdata/Makefile.am +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/libfdatetime/Makefile.am +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/libfguid/Makefile.am +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/libfvalue/Makefile.am +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/libfwevt/Makefile.am +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/libfwnt/Makefile.am +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/libregf/Makefile.am +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/libuna/Makefile.am +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/libwrc/Makefile.am +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/m4/gettext.m4 +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/m4/host-cpu-c-abi.m4 +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/m4/iconv.m4 +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/m4/intlmacosx.m4 +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/m4/lib-ld.m4 +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/m4/lib-link.m4 +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/m4/lib-prefix.m4 +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/m4/libbfio.m4 +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/m4/libcdata.m4 +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/m4/libcerror.m4 +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/m4/libcnotify.m4 +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/m4/libcsplit.m4 +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/m4/libcthreads.m4 +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/m4/libexe.m4 +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/m4/libfcache.m4 +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/m4/libfdata.m4 +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/m4/libfdatetime.m4 +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/m4/libfguid.m4 +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/m4/libfvalue.m4 +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/m4/libfwevt.m4 +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/m4/libfwnt.m4 +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/m4/libregf.m4 +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/m4/libuna.m4 +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/m4/libwrc.m4 +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/m4/nls.m4 +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/m4/po.m4 +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/m4/progtest.m4 +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/Makefile.am +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_chunk/evtx_test_chunk.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_chunks_table/evtx_test_chunks_table.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_error/evtx_test_error.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_file/evtx_test_file.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_io_handle/evtx_test_io_handle.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_notify/evtx_test_notify.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_record/evtx_test_record.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_record_values/evtx_test_record_values.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_support/evtx_test_support.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_template_definition/evtx_test_template_definition.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_tools_info_handle/evtx_test_tools_info_handle.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_tools_message_handle/evtx_test_tools_message_handle.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_tools_message_string/evtx_test_tools_message_string.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_tools_output/evtx_test_tools_output.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_tools_path_handle/evtx_test_tools_path_handle.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_tools_registry_file/evtx_test_tools_registry_file.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_tools_resource_file/evtx_test_tools_resource_file.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_tools_signal/evtx_test_tools_signal.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtxexport/evtxexport.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtxinfo/evtxinfo.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libbfio/libbfio.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libcdata/libcdata.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libcdirectory/libcdirectory.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libcerror/libcerror.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libcfile/libcfile.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libclocale/libclocale.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libcnotify/libcnotify.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libcpath/libcpath.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libcsplit/libcsplit.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libcthreads/libcthreads.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libevtx/libevtx.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libevtx.sln +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libexe/libexe.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libfcache/libfcache.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libfdata/libfdata.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libfdatetime/libfdatetime.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libfguid/libfguid.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libfvalue/libfvalue.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libfwevt/libfwevt.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libfwnt/libfwnt.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libregf/libregf.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libuna/libuna.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libwrc/libwrc.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/msvscpp/pyevtx/pyevtx.vcproj +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/ossfuzz/Makefile.am +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/po/ChangeLog +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/po/Makefile.in.in +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/po/Makevars.in +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/po/POTFILES.in +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/po/Rules-quot +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/po/boldquot.sed +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/po/en@boldquot.header +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/po/en@quot.header +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/po/insert-header.sin +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/po/quot.sed +0 -0
- {libevtx-20251118 → libevtx_python-20260705}/po/remove-potcdate.sin +0 -0
|
@@ -0,0 +1,368 @@
|
|
|
1
|
+
Installation Instructions
|
|
2
|
+
*************************
|
|
3
|
+
|
|
4
|
+
Copyright (C) 1994-1996, 1999-2002, 2004-2017, 2020-2021 Free
|
|
5
|
+
Software Foundation, Inc.
|
|
6
|
+
|
|
7
|
+
Copying and distribution of this file, with or without modification,
|
|
8
|
+
are permitted in any medium without royalty provided the copyright
|
|
9
|
+
notice and this notice are preserved. This file is offered as-is,
|
|
10
|
+
without warranty of any kind.
|
|
11
|
+
|
|
12
|
+
Basic Installation
|
|
13
|
+
==================
|
|
14
|
+
|
|
15
|
+
Briefly, the shell command './configure && make && make install'
|
|
16
|
+
should configure, build, and install this package. The following
|
|
17
|
+
more-detailed instructions are generic; see the 'README' file for
|
|
18
|
+
instructions specific to this package. Some packages provide this
|
|
19
|
+
'INSTALL' file but do not implement all of the features documented
|
|
20
|
+
below. The lack of an optional feature in a given package is not
|
|
21
|
+
necessarily a bug. More recommendations for GNU packages can be found
|
|
22
|
+
in *note Makefile Conventions: (standards)Makefile Conventions.
|
|
23
|
+
|
|
24
|
+
The 'configure' shell script attempts to guess correct values for
|
|
25
|
+
various system-dependent variables used during compilation. It uses
|
|
26
|
+
those values to create a 'Makefile' in each directory of the package.
|
|
27
|
+
It may also create one or more '.h' files containing system-dependent
|
|
28
|
+
definitions. Finally, it creates a shell script 'config.status' that
|
|
29
|
+
you can run in the future to recreate the current configuration, and a
|
|
30
|
+
file 'config.log' containing compiler output (useful mainly for
|
|
31
|
+
debugging 'configure').
|
|
32
|
+
|
|
33
|
+
It can also use an optional file (typically called 'config.cache' and
|
|
34
|
+
enabled with '--cache-file=config.cache' or simply '-C') that saves the
|
|
35
|
+
results of its tests to speed up reconfiguring. Caching is disabled by
|
|
36
|
+
default to prevent problems with accidental use of stale cache files.
|
|
37
|
+
|
|
38
|
+
If you need to do unusual things to compile the package, please try
|
|
39
|
+
to figure out how 'configure' could check whether to do them, and mail
|
|
40
|
+
diffs or instructions to the address given in the 'README' so they can
|
|
41
|
+
be considered for the next release. If you are using the cache, and at
|
|
42
|
+
some point 'config.cache' contains results you don't want to keep, you
|
|
43
|
+
may remove or edit it.
|
|
44
|
+
|
|
45
|
+
The file 'configure.ac' (or 'configure.in') is used to create
|
|
46
|
+
'configure' by a program called 'autoconf'. You need 'configure.ac' if
|
|
47
|
+
you want to change it or regenerate 'configure' using a newer version of
|
|
48
|
+
'autoconf'.
|
|
49
|
+
|
|
50
|
+
The simplest way to compile this package is:
|
|
51
|
+
|
|
52
|
+
1. 'cd' to the directory containing the package's source code and type
|
|
53
|
+
'./configure' to configure the package for your system.
|
|
54
|
+
|
|
55
|
+
Running 'configure' might take a while. While running, it prints
|
|
56
|
+
some messages telling which features it is checking for.
|
|
57
|
+
|
|
58
|
+
2. Type 'make' to compile the package.
|
|
59
|
+
|
|
60
|
+
3. Optionally, type 'make check' to run any self-tests that come with
|
|
61
|
+
the package, generally using the just-built uninstalled binaries.
|
|
62
|
+
|
|
63
|
+
4. Type 'make install' to install the programs and any data files and
|
|
64
|
+
documentation. When installing into a prefix owned by root, it is
|
|
65
|
+
recommended that the package be configured and built as a regular
|
|
66
|
+
user, and only the 'make install' phase executed with root
|
|
67
|
+
privileges.
|
|
68
|
+
|
|
69
|
+
5. Optionally, type 'make installcheck' to repeat any self-tests, but
|
|
70
|
+
this time using the binaries in their final installed location.
|
|
71
|
+
This target does not install anything. Running this target as a
|
|
72
|
+
regular user, particularly if the prior 'make install' required
|
|
73
|
+
root privileges, verifies that the installation completed
|
|
74
|
+
correctly.
|
|
75
|
+
|
|
76
|
+
6. You can remove the program binaries and object files from the
|
|
77
|
+
source code directory by typing 'make clean'. To also remove the
|
|
78
|
+
files that 'configure' created (so you can compile the package for
|
|
79
|
+
a different kind of computer), type 'make distclean'. There is
|
|
80
|
+
also a 'make maintainer-clean' target, but that is intended mainly
|
|
81
|
+
for the package's developers. If you use it, you may have to get
|
|
82
|
+
all sorts of other programs in order to regenerate files that came
|
|
83
|
+
with the distribution.
|
|
84
|
+
|
|
85
|
+
7. Often, you can also type 'make uninstall' to remove the installed
|
|
86
|
+
files again. In practice, not all packages have tested that
|
|
87
|
+
uninstallation works correctly, even though it is required by the
|
|
88
|
+
GNU Coding Standards.
|
|
89
|
+
|
|
90
|
+
8. Some packages, particularly those that use Automake, provide 'make
|
|
91
|
+
distcheck', which can by used by developers to test that all other
|
|
92
|
+
targets like 'make install' and 'make uninstall' work correctly.
|
|
93
|
+
This target is generally not run by end users.
|
|
94
|
+
|
|
95
|
+
Compilers and Options
|
|
96
|
+
=====================
|
|
97
|
+
|
|
98
|
+
Some systems require unusual options for compilation or linking that
|
|
99
|
+
the 'configure' script does not know about. Run './configure --help'
|
|
100
|
+
for details on some of the pertinent environment variables.
|
|
101
|
+
|
|
102
|
+
You can give 'configure' initial values for configuration parameters
|
|
103
|
+
by setting variables in the command line or in the environment. Here is
|
|
104
|
+
an example:
|
|
105
|
+
|
|
106
|
+
./configure CC=c99 CFLAGS=-g LIBS=-lposix
|
|
107
|
+
|
|
108
|
+
*Note Defining Variables::, for more details.
|
|
109
|
+
|
|
110
|
+
Compiling For Multiple Architectures
|
|
111
|
+
====================================
|
|
112
|
+
|
|
113
|
+
You can compile the package for more than one kind of computer at the
|
|
114
|
+
same time, by placing the object files for each architecture in their
|
|
115
|
+
own directory. To do this, you can use GNU 'make'. 'cd' to the
|
|
116
|
+
directory where you want the object files and executables to go and run
|
|
117
|
+
the 'configure' script. 'configure' automatically checks for the source
|
|
118
|
+
code in the directory that 'configure' is in and in '..'. This is known
|
|
119
|
+
as a "VPATH" build.
|
|
120
|
+
|
|
121
|
+
With a non-GNU 'make', it is safer to compile the package for one
|
|
122
|
+
architecture at a time in the source code directory. After you have
|
|
123
|
+
installed the package for one architecture, use 'make distclean' before
|
|
124
|
+
reconfiguring for another architecture.
|
|
125
|
+
|
|
126
|
+
On MacOS X 10.5 and later systems, you can create libraries and
|
|
127
|
+
executables that work on multiple system types--known as "fat" or
|
|
128
|
+
"universal" binaries--by specifying multiple '-arch' options to the
|
|
129
|
+
compiler but only a single '-arch' option to the preprocessor. Like
|
|
130
|
+
this:
|
|
131
|
+
|
|
132
|
+
./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
|
|
133
|
+
CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
|
|
134
|
+
CPP="gcc -E" CXXCPP="g++ -E"
|
|
135
|
+
|
|
136
|
+
This is not guaranteed to produce working output in all cases, you
|
|
137
|
+
may have to build one architecture at a time and combine the results
|
|
138
|
+
using the 'lipo' tool if you have problems.
|
|
139
|
+
|
|
140
|
+
Installation Names
|
|
141
|
+
==================
|
|
142
|
+
|
|
143
|
+
By default, 'make install' installs the package's commands under
|
|
144
|
+
'/usr/local/bin', include files under '/usr/local/include', etc. You
|
|
145
|
+
can specify an installation prefix other than '/usr/local' by giving
|
|
146
|
+
'configure' the option '--prefix=PREFIX', where PREFIX must be an
|
|
147
|
+
absolute file name.
|
|
148
|
+
|
|
149
|
+
You can specify separate installation prefixes for
|
|
150
|
+
architecture-specific files and architecture-independent files. If you
|
|
151
|
+
pass the option '--exec-prefix=PREFIX' to 'configure', the package uses
|
|
152
|
+
PREFIX as the prefix for installing programs and libraries.
|
|
153
|
+
Documentation and other data files still use the regular prefix.
|
|
154
|
+
|
|
155
|
+
In addition, if you use an unusual directory layout you can give
|
|
156
|
+
options like '--bindir=DIR' to specify different values for particular
|
|
157
|
+
kinds of files. Run 'configure --help' for a list of the directories
|
|
158
|
+
you can set and what kinds of files go in them. In general, the default
|
|
159
|
+
for these options is expressed in terms of '${prefix}', so that
|
|
160
|
+
specifying just '--prefix' will affect all of the other directory
|
|
161
|
+
specifications that were not explicitly provided.
|
|
162
|
+
|
|
163
|
+
The most portable way to affect installation locations is to pass the
|
|
164
|
+
correct locations to 'configure'; however, many packages provide one or
|
|
165
|
+
both of the following shortcuts of passing variable assignments to the
|
|
166
|
+
'make install' command line to change installation locations without
|
|
167
|
+
having to reconfigure or recompile.
|
|
168
|
+
|
|
169
|
+
The first method involves providing an override variable for each
|
|
170
|
+
affected directory. For example, 'make install
|
|
171
|
+
prefix=/alternate/directory' will choose an alternate location for all
|
|
172
|
+
directory configuration variables that were expressed in terms of
|
|
173
|
+
'${prefix}'. Any directories that were specified during 'configure',
|
|
174
|
+
but not in terms of '${prefix}', must each be overridden at install time
|
|
175
|
+
for the entire installation to be relocated. The approach of makefile
|
|
176
|
+
variable overrides for each directory variable is required by the GNU
|
|
177
|
+
Coding Standards, and ideally causes no recompilation. However, some
|
|
178
|
+
platforms have known limitations with the semantics of shared libraries
|
|
179
|
+
that end up requiring recompilation when using this method, particularly
|
|
180
|
+
noticeable in packages that use GNU Libtool.
|
|
181
|
+
|
|
182
|
+
The second method involves providing the 'DESTDIR' variable. For
|
|
183
|
+
example, 'make install DESTDIR=/alternate/directory' will prepend
|
|
184
|
+
'/alternate/directory' before all installation names. The approach of
|
|
185
|
+
'DESTDIR' overrides is not required by the GNU Coding Standards, and
|
|
186
|
+
does not work on platforms that have drive letters. On the other hand,
|
|
187
|
+
it does better at avoiding recompilation issues, and works well even
|
|
188
|
+
when some directory options were not specified in terms of '${prefix}'
|
|
189
|
+
at 'configure' time.
|
|
190
|
+
|
|
191
|
+
Optional Features
|
|
192
|
+
=================
|
|
193
|
+
|
|
194
|
+
If the package supports it, you can cause programs to be installed
|
|
195
|
+
with an extra prefix or suffix on their names by giving 'configure' the
|
|
196
|
+
option '--program-prefix=PREFIX' or '--program-suffix=SUFFIX'.
|
|
197
|
+
|
|
198
|
+
Some packages pay attention to '--enable-FEATURE' options to
|
|
199
|
+
'configure', where FEATURE indicates an optional part of the package.
|
|
200
|
+
They may also pay attention to '--with-PACKAGE' options, where PACKAGE
|
|
201
|
+
is something like 'gnu-as' or 'x' (for the X Window System). The
|
|
202
|
+
'README' should mention any '--enable-' and '--with-' options that the
|
|
203
|
+
package recognizes.
|
|
204
|
+
|
|
205
|
+
For packages that use the X Window System, 'configure' can usually
|
|
206
|
+
find the X include and library files automatically, but if it doesn't,
|
|
207
|
+
you can use the 'configure' options '--x-includes=DIR' and
|
|
208
|
+
'--x-libraries=DIR' to specify their locations.
|
|
209
|
+
|
|
210
|
+
Some packages offer the ability to configure how verbose the
|
|
211
|
+
execution of 'make' will be. For these packages, running './configure
|
|
212
|
+
--enable-silent-rules' sets the default to minimal output, which can be
|
|
213
|
+
overridden with 'make V=1'; while running './configure
|
|
214
|
+
--disable-silent-rules' sets the default to verbose, which can be
|
|
215
|
+
overridden with 'make V=0'.
|
|
216
|
+
|
|
217
|
+
Particular systems
|
|
218
|
+
==================
|
|
219
|
+
|
|
220
|
+
On HP-UX, the default C compiler is not ANSI C compatible. If GNU CC
|
|
221
|
+
is not installed, it is recommended to use the following options in
|
|
222
|
+
order to use an ANSI C compiler:
|
|
223
|
+
|
|
224
|
+
./configure CC="cc -Ae -D_XOPEN_SOURCE=500"
|
|
225
|
+
|
|
226
|
+
and if that doesn't work, install pre-built binaries of GCC for HP-UX.
|
|
227
|
+
|
|
228
|
+
HP-UX 'make' updates targets which have the same timestamps as their
|
|
229
|
+
prerequisites, which makes it generally unusable when shipped generated
|
|
230
|
+
files such as 'configure' are involved. Use GNU 'make' instead.
|
|
231
|
+
|
|
232
|
+
On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot
|
|
233
|
+
parse its '<wchar.h>' header file. The option '-nodtk' can be used as a
|
|
234
|
+
workaround. If GNU CC is not installed, it is therefore recommended to
|
|
235
|
+
try
|
|
236
|
+
|
|
237
|
+
./configure CC="cc"
|
|
238
|
+
|
|
239
|
+
and if that doesn't work, try
|
|
240
|
+
|
|
241
|
+
./configure CC="cc -nodtk"
|
|
242
|
+
|
|
243
|
+
On Solaris, don't put '/usr/ucb' early in your 'PATH'. This
|
|
244
|
+
directory contains several dysfunctional programs; working variants of
|
|
245
|
+
these programs are available in '/usr/bin'. So, if you need '/usr/ucb'
|
|
246
|
+
in your 'PATH', put it _after_ '/usr/bin'.
|
|
247
|
+
|
|
248
|
+
On Haiku, software installed for all users goes in '/boot/common',
|
|
249
|
+
not '/usr/local'. It is recommended to use the following options:
|
|
250
|
+
|
|
251
|
+
./configure --prefix=/boot/common
|
|
252
|
+
|
|
253
|
+
Specifying the System Type
|
|
254
|
+
==========================
|
|
255
|
+
|
|
256
|
+
There may be some features 'configure' cannot figure out
|
|
257
|
+
automatically, but needs to determine by the type of machine the package
|
|
258
|
+
will run on. Usually, assuming the package is built to be run on the
|
|
259
|
+
_same_ architectures, 'configure' can figure that out, but if it prints
|
|
260
|
+
a message saying it cannot guess the machine type, give it the
|
|
261
|
+
'--build=TYPE' option. TYPE can either be a short name for the system
|
|
262
|
+
type, such as 'sun4', or a canonical name which has the form:
|
|
263
|
+
|
|
264
|
+
CPU-COMPANY-SYSTEM
|
|
265
|
+
|
|
266
|
+
where SYSTEM can have one of these forms:
|
|
267
|
+
|
|
268
|
+
OS
|
|
269
|
+
KERNEL-OS
|
|
270
|
+
|
|
271
|
+
See the file 'config.sub' for the possible values of each field. If
|
|
272
|
+
'config.sub' isn't included in this package, then this package doesn't
|
|
273
|
+
need to know the machine type.
|
|
274
|
+
|
|
275
|
+
If you are _building_ compiler tools for cross-compiling, you should
|
|
276
|
+
use the option '--target=TYPE' to select the type of system they will
|
|
277
|
+
produce code for.
|
|
278
|
+
|
|
279
|
+
If you want to _use_ a cross compiler, that generates code for a
|
|
280
|
+
platform different from the build platform, you should specify the
|
|
281
|
+
"host" platform (i.e., that on which the generated programs will
|
|
282
|
+
eventually be run) with '--host=TYPE'.
|
|
283
|
+
|
|
284
|
+
Sharing Defaults
|
|
285
|
+
================
|
|
286
|
+
|
|
287
|
+
If you want to set default values for 'configure' scripts to share,
|
|
288
|
+
you can create a site shell script called 'config.site' that gives
|
|
289
|
+
default values for variables like 'CC', 'cache_file', and 'prefix'.
|
|
290
|
+
'configure' looks for 'PREFIX/share/config.site' if it exists, then
|
|
291
|
+
'PREFIX/etc/config.site' if it exists. Or, you can set the
|
|
292
|
+
'CONFIG_SITE' environment variable to the location of the site script.
|
|
293
|
+
A warning: not all 'configure' scripts look for a site script.
|
|
294
|
+
|
|
295
|
+
Defining Variables
|
|
296
|
+
==================
|
|
297
|
+
|
|
298
|
+
Variables not defined in a site shell script can be set in the
|
|
299
|
+
environment passed to 'configure'. However, some packages may run
|
|
300
|
+
configure again during the build, and the customized values of these
|
|
301
|
+
variables may be lost. In order to avoid this problem, you should set
|
|
302
|
+
them in the 'configure' command line, using 'VAR=value'. For example:
|
|
303
|
+
|
|
304
|
+
./configure CC=/usr/local2/bin/gcc
|
|
305
|
+
|
|
306
|
+
causes the specified 'gcc' to be used as the C compiler (unless it is
|
|
307
|
+
overridden in the site shell script).
|
|
308
|
+
|
|
309
|
+
Unfortunately, this technique does not work for 'CONFIG_SHELL' due to an
|
|
310
|
+
Autoconf limitation. Until the limitation is lifted, you can use this
|
|
311
|
+
workaround:
|
|
312
|
+
|
|
313
|
+
CONFIG_SHELL=/bin/bash ./configure CONFIG_SHELL=/bin/bash
|
|
314
|
+
|
|
315
|
+
'configure' Invocation
|
|
316
|
+
======================
|
|
317
|
+
|
|
318
|
+
'configure' recognizes the following options to control how it
|
|
319
|
+
operates.
|
|
320
|
+
|
|
321
|
+
'--help'
|
|
322
|
+
'-h'
|
|
323
|
+
Print a summary of all of the options to 'configure', and exit.
|
|
324
|
+
|
|
325
|
+
'--help=short'
|
|
326
|
+
'--help=recursive'
|
|
327
|
+
Print a summary of the options unique to this package's
|
|
328
|
+
'configure', and exit. The 'short' variant lists options used only
|
|
329
|
+
in the top level, while the 'recursive' variant lists options also
|
|
330
|
+
present in any nested packages.
|
|
331
|
+
|
|
332
|
+
'--version'
|
|
333
|
+
'-V'
|
|
334
|
+
Print the version of Autoconf used to generate the 'configure'
|
|
335
|
+
script, and exit.
|
|
336
|
+
|
|
337
|
+
'--cache-file=FILE'
|
|
338
|
+
Enable the cache: use and save the results of the tests in FILE,
|
|
339
|
+
traditionally 'config.cache'. FILE defaults to '/dev/null' to
|
|
340
|
+
disable caching.
|
|
341
|
+
|
|
342
|
+
'--config-cache'
|
|
343
|
+
'-C'
|
|
344
|
+
Alias for '--cache-file=config.cache'.
|
|
345
|
+
|
|
346
|
+
'--quiet'
|
|
347
|
+
'--silent'
|
|
348
|
+
'-q'
|
|
349
|
+
Do not print messages saying which checks are being made. To
|
|
350
|
+
suppress all normal output, redirect it to '/dev/null' (any error
|
|
351
|
+
messages will still be shown).
|
|
352
|
+
|
|
353
|
+
'--srcdir=DIR'
|
|
354
|
+
Look for the package's source code in directory DIR. Usually
|
|
355
|
+
'configure' can determine that directory automatically.
|
|
356
|
+
|
|
357
|
+
'--prefix=DIR'
|
|
358
|
+
Use DIR as the installation prefix. *note Installation Names:: for
|
|
359
|
+
more details, including other options available for fine-tuning the
|
|
360
|
+
installation locations.
|
|
361
|
+
|
|
362
|
+
'--no-create'
|
|
363
|
+
'-n'
|
|
364
|
+
Run the configure checks, but stop before creating any output
|
|
365
|
+
files.
|
|
366
|
+
|
|
367
|
+
'configure' also accepts some other, not widely useful, options. Run
|
|
368
|
+
'configure --help' for more details.
|
|
@@ -0,0 +1,117 @@
|
|
|
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
|
+
libfwevt \
|
|
22
|
+
libfwnt \
|
|
23
|
+
libevtx \
|
|
24
|
+
libexe \
|
|
25
|
+
libregf \
|
|
26
|
+
libwrc \
|
|
27
|
+
libcdirectory \
|
|
28
|
+
evtxtools \
|
|
29
|
+
pyevtx \
|
|
30
|
+
po \
|
|
31
|
+
manuals \
|
|
32
|
+
tests \
|
|
33
|
+
ossfuzz \
|
|
34
|
+
msvscpp
|
|
35
|
+
|
|
36
|
+
DPKG_FILES = \
|
|
37
|
+
dpkg/changelog \
|
|
38
|
+
dpkg/changelog.in \
|
|
39
|
+
dpkg/compat \
|
|
40
|
+
dpkg/control \
|
|
41
|
+
dpkg/copyright \
|
|
42
|
+
dpkg/rules \
|
|
43
|
+
dpkg/libevtx.install \
|
|
44
|
+
dpkg/libevtx-dev.install \
|
|
45
|
+
dpkg/libevtx-python3.install \
|
|
46
|
+
dpkg/libevtx-tools.install \
|
|
47
|
+
dpkg/source/format
|
|
48
|
+
|
|
49
|
+
GETTEXT_FILES = \
|
|
50
|
+
config.rpath \
|
|
51
|
+
po/Makevars.in
|
|
52
|
+
|
|
53
|
+
PKGCONFIG_FILES = \
|
|
54
|
+
libevtx.pc.in
|
|
55
|
+
|
|
56
|
+
SETUP_PY_FILES = \
|
|
57
|
+
_build.py \
|
|
58
|
+
pyproject.toml \
|
|
59
|
+
pyproject.toml.in
|
|
60
|
+
|
|
61
|
+
SPEC_FILES = \
|
|
62
|
+
libevtx.spec \
|
|
63
|
+
libevtx.spec.in
|
|
64
|
+
|
|
65
|
+
EXTRA_DIST = \
|
|
66
|
+
$(DPKG_FILES) \
|
|
67
|
+
$(GETTEXT_FILES) \
|
|
68
|
+
$(PKGCONFIG_FILES) \
|
|
69
|
+
$(SETUP_PY_FILES) \
|
|
70
|
+
$(SPEC_FILES)
|
|
71
|
+
|
|
72
|
+
DISTCLEANFILES = \
|
|
73
|
+
config.status \
|
|
74
|
+
config.cache \
|
|
75
|
+
config.log \
|
|
76
|
+
libevtx.pc \
|
|
77
|
+
libevtx.spec \
|
|
78
|
+
Makefile \
|
|
79
|
+
Makefile.in \
|
|
80
|
+
po/Makevars
|
|
81
|
+
|
|
82
|
+
pkgconfigdir = $(libdir)/pkgconfig
|
|
83
|
+
|
|
84
|
+
pkgconfig_DATA = \
|
|
85
|
+
libevtx.pc
|
|
86
|
+
|
|
87
|
+
check-build: all
|
|
88
|
+
cd $(srcdir)/tests && $(MAKE) check-build $(AM_MAKEFLAGS)
|
|
89
|
+
|
|
90
|
+
libtool:
|
|
91
|
+
@LIBTOOL_DEPS@
|
|
92
|
+
cd $(srcdir) && $(SHELL) ./config.status --recheck
|
|
93
|
+
|
|
94
|
+
lib: library
|
|
95
|
+
|
|
96
|
+
library:
|
|
97
|
+
(cd $(srcdir)/common && $(MAKE) $(AM_MAKEFLAGS))
|
|
98
|
+
(cd $(srcdir)/libcerror && $(MAKE) $(AM_MAKEFLAGS))
|
|
99
|
+
(cd $(srcdir)/libcthreads && $(MAKE) $(AM_MAKEFLAGS))
|
|
100
|
+
(cd $(srcdir)/libcdata && $(MAKE) $(AM_MAKEFLAGS))
|
|
101
|
+
(cd $(srcdir)/libclocale && $(MAKE) $(AM_MAKEFLAGS))
|
|
102
|
+
(cd $(srcdir)/libcnotify && $(MAKE) $(AM_MAKEFLAGS))
|
|
103
|
+
(cd $(srcdir)/libcsplit && $(MAKE) $(AM_MAKEFLAGS))
|
|
104
|
+
(cd $(srcdir)/libuna && $(MAKE) $(AM_MAKEFLAGS))
|
|
105
|
+
(cd $(srcdir)/libcfile && $(MAKE) $(AM_MAKEFLAGS))
|
|
106
|
+
(cd $(srcdir)/libcpath && $(MAKE) $(AM_MAKEFLAGS))
|
|
107
|
+
(cd $(srcdir)/libbfio && $(MAKE) $(AM_MAKEFLAGS))
|
|
108
|
+
(cd $(srcdir)/libfcache && $(MAKE) $(AM_MAKEFLAGS))
|
|
109
|
+
(cd $(srcdir)/libfdata && $(MAKE) $(AM_MAKEFLAGS))
|
|
110
|
+
(cd $(srcdir)/libfdatetime && $(MAKE) $(AM_MAKEFLAGS))
|
|
111
|
+
(cd $(srcdir)/libfguid && $(MAKE) $(AM_MAKEFLAGS))
|
|
112
|
+
(cd $(srcdir)/libfvalue && $(MAKE) $(AM_MAKEFLAGS))
|
|
113
|
+
(cd $(srcdir)/libfwevt && $(MAKE) $(AM_MAKEFLAGS))
|
|
114
|
+
(cd $(srcdir)/libfwnt && $(MAKE) $(AM_MAKEFLAGS))
|
|
115
|
+
(cd $(srcdir)/libevtx && $(MAKE) $(AM_MAKEFLAGS))
|
|
116
|
+
(cd $(srcdir)/po && $(MAKE) $(AM_MAKEFLAGS))
|
|
117
|
+
|