libevtx-python 20240427__tar.gz → 20251118__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-20251118/AUTHORS +4 -0
- libevtx-20251118/INSTALL +380 -0
- libevtx-20251118/Makefile.in +1294 -0
- libevtx-20251118/PKG-INFO +16 -0
- libevtx-20251118/aclocal.m4 +1729 -0
- libevtx-20251118/common/Makefile.in +843 -0
- libevtx-20251118/common/byte_stream.h +257 -0
- libevtx-20251118/common/common.h +43 -0
- libevtx-20251118/common/config.h +674 -0
- libevtx-20251118/common/config.h.in +673 -0
- libevtx-20251118/common/config_borlandc.h +26 -0
- libevtx-20251118/common/config_msc.h +34 -0
- libevtx-20251118/common/config_winapi.h +95 -0
- libevtx-20251118/common/file_stream.h +151 -0
- libevtx-20251118/common/memory.h +129 -0
- libevtx-20251118/common/narrow_string.h +187 -0
- libevtx-20251118/common/system_string.h +154 -0
- libevtx-20251118/common/types.h +392 -0
- libevtx-20251118/common/types.h.in +392 -0
- libevtx-20251118/common/wide_string.h +175 -0
- libevtx-20251118/compile +364 -0
- libevtx-20251118/config.guess +1815 -0
- libevtx-20251118/config.sub +2354 -0
- libevtx-20251118/configure +85375 -0
- libevtx-20251118/configure.ac +275 -0
- libevtx-20251118/depcomp +792 -0
- libevtx-20251118/dpkg/changelog +5 -0
- libevtx-20251118/dpkg/copyright +25 -0
- libevtx-20251118/evtxtools/Makefile.in +1123 -0
- libevtx-20251118/evtxtools/evtxexport.c +606 -0
- libevtx-20251118/evtxtools/evtxinfo.c +333 -0
- libevtx-20251118/evtxtools/evtxinput.c +251 -0
- libevtx-20251118/evtxtools/evtxinput.h +62 -0
- libevtx-20251118/evtxtools/evtxtools_getopt.c +190 -0
- libevtx-20251118/evtxtools/evtxtools_getopt.h +68 -0
- libevtx-20251118/evtxtools/evtxtools_i18n.h +48 -0
- libevtx-20251118/evtxtools/evtxtools_libbfio.h +58 -0
- libevtx-20251118/evtxtools/evtxtools_libcdirectory.h +50 -0
- libevtx-20251118/evtxtools/evtxtools_libcerror.h +50 -0
- libevtx-20251118/evtxtools/evtxtools_libclocale.h +50 -0
- libevtx-20251118/evtxtools/evtxtools_libcnotify.h +50 -0
- libevtx-20251118/evtxtools/evtxtools_libcpath.h +48 -0
- libevtx-20251118/evtxtools/evtxtools_libcsplit.h +52 -0
- libevtx-20251118/evtxtools/evtxtools_libevtx.h +30 -0
- libevtx-20251118/evtxtools/evtxtools_libexe.h +50 -0
- libevtx-20251118/evtxtools/evtxtools_libfcache.h +50 -0
- libevtx-20251118/evtxtools/evtxtools_libfdatetime.h +56 -0
- libevtx-20251118/evtxtools/evtxtools_libfguid.h +49 -0
- libevtx-20251118/evtxtools/evtxtools_libfvalue.h +59 -0
- libevtx-20251118/evtxtools/evtxtools_libfwevt.h +62 -0
- libevtx-20251118/evtxtools/evtxtools_libfwnt.h +58 -0
- libevtx-20251118/evtxtools/evtxtools_libregf.h +52 -0
- libevtx-20251118/evtxtools/evtxtools_libuna.h +60 -0
- libevtx-20251118/evtxtools/evtxtools_libwrc.h +56 -0
- libevtx-20251118/evtxtools/evtxtools_output.c +207 -0
- libevtx-20251118/evtxtools/evtxtools_output.h +55 -0
- libevtx-20251118/evtxtools/evtxtools_signal.c +262 -0
- libevtx-20251118/evtxtools/evtxtools_signal.h +72 -0
- libevtx-20251118/evtxtools/evtxtools_system_split_string.h +73 -0
- libevtx-20251118/evtxtools/evtxtools_unused.h +50 -0
- libevtx-20251118/evtxtools/evtxtools_wide_string.c +69 -0
- libevtx-20251118/evtxtools/evtxtools_wide_string.h +54 -0
- libevtx-20251118/evtxtools/export_handle.c +2974 -0
- libevtx-20251118/evtxtools/export_handle.h +257 -0
- libevtx-20251118/evtxtools/info_handle.c +604 -0
- libevtx-20251118/evtxtools/info_handle.h +101 -0
- libevtx-20251118/evtxtools/log_handle.c +276 -0
- libevtx-20251118/evtxtools/log_handle.h +71 -0
- libevtx-20251118/evtxtools/message_handle.c +4109 -0
- libevtx-20251118/evtxtools/message_handle.h +304 -0
- libevtx-20251118/evtxtools/message_string.c +611 -0
- libevtx-20251118/evtxtools/message_string.h +79 -0
- libevtx-20251118/evtxtools/path_handle.c +407 -0
- libevtx-20251118/evtxtools/path_handle.h +69 -0
- libevtx-20251118/evtxtools/registry_file.c +903 -0
- libevtx-20251118/evtxtools/registry_file.h +124 -0
- libevtx-20251118/evtxtools/resource_file.c +2570 -0
- libevtx-20251118/evtxtools/resource_file.h +192 -0
- libevtx-20251118/include/Makefile.in +904 -0
- libevtx-20251118/include/libevtx/codepage.h +122 -0
- libevtx-20251118/include/libevtx/definitions.h +73 -0
- libevtx-20251118/include/libevtx/definitions.h.in +73 -0
- libevtx-20251118/include/libevtx/error.h +291 -0
- libevtx-20251118/include/libevtx/extern.h +44 -0
- libevtx-20251118/include/libevtx/features.h +50 -0
- libevtx-20251118/include/libevtx/features.h.in +50 -0
- libevtx-20251118/include/libevtx/types.h +213 -0
- libevtx-20251118/include/libevtx/types.h.in +213 -0
- libevtx-20251118/include/libevtx.h +868 -0
- libevtx-20251118/include/libevtx.h.in +868 -0
- libevtx-20251118/install-sh +541 -0
- libevtx-20251118/libbfio/Makefile.in +1004 -0
- libevtx-20251118/libcdata/Makefile.in +983 -0
- libevtx-20251118/libcdirectory/Makefile.in +955 -0
- libevtx-20251118/libcerror/Makefile.in +925 -0
- libevtx-20251118/libcfile/Makefile.in +952 -0
- libevtx-20251118/libclocale/Makefile.in +935 -0
- libevtx-20251118/libcnotify/Makefile.in +933 -0
- libevtx-20251118/libcpath/Makefile.in +937 -0
- libevtx-20251118/libcsplit/Makefile.in +950 -0
- libevtx-20251118/libcthreads/Makefile.in +985 -0
- libevtx-20251118/libevtx/Makefile.in +1106 -0
- libevtx-20251118/libevtx/evtx_chunk.h +104 -0
- libevtx-20251118/libevtx/evtx_event_record.h +64 -0
- libevtx-20251118/libevtx/evtx_file_header.h +104 -0
- libevtx-20251118/libevtx/libevtx.c +80 -0
- libevtx-20251118/libevtx/libevtx.rc +38 -0
- libevtx-20251118/libevtx/libevtx.rc.in +38 -0
- libevtx-20251118/libevtx/libevtx_byte_stream.c +104 -0
- libevtx-20251118/libevtx/libevtx_byte_stream.h +44 -0
- libevtx-20251118/libevtx/libevtx_checksum.c +200 -0
- libevtx-20251118/libevtx/libevtx_checksum.h +56 -0
- libevtx-20251118/libevtx/libevtx_chunk.c +1163 -0
- libevtx-20251118/libevtx/libevtx_chunk.h +109 -0
- libevtx-20251118/libevtx/libevtx_chunks_table.c +446 -0
- libevtx-20251118/libevtx/libevtx_chunks_table.h +83 -0
- libevtx-20251118/libevtx/libevtx_codepage.c +107 -0
- libevtx-20251118/libevtx/libevtx_codepage.h +116 -0
- libevtx-20251118/libevtx/libevtx_debug.c +256 -0
- libevtx-20251118/libevtx/libevtx_debug.h +55 -0
- libevtx-20251118/libevtx/libevtx_definitions.h +207 -0
- libevtx-20251118/libevtx/libevtx_definitions.h.in +207 -0
- libevtx-20251118/libevtx/libevtx_error.c +111 -0
- libevtx-20251118/libevtx/libevtx_error.h +74 -0
- libevtx-20251118/libevtx/libevtx_extern.h +46 -0
- libevtx-20251118/libevtx/libevtx_file.c +2285 -0
- libevtx-20251118/libevtx/libevtx_file.h +212 -0
- libevtx-20251118/libevtx/libevtx_i18n.c +63 -0
- libevtx-20251118/libevtx/libevtx_i18n.h +55 -0
- libevtx-20251118/libevtx/libevtx_io_handle.c +584 -0
- libevtx-20251118/libevtx/libevtx_io_handle.h +127 -0
- libevtx-20251118/libevtx/libevtx_libbfio.h +58 -0
- libevtx-20251118/libevtx/libevtx_libcdata.h +54 -0
- libevtx-20251118/libevtx/libevtx_libcerror.h +50 -0
- libevtx-20251118/libevtx/libevtx_libclocale.h +50 -0
- libevtx-20251118/libevtx/libevtx_libcnotify.h +50 -0
- libevtx-20251118/libevtx/libevtx_libfcache.h +50 -0
- libevtx-20251118/libevtx/libevtx_libfdata.h +54 -0
- libevtx-20251118/libevtx/libevtx_libfdatetime.h +56 -0
- libevtx-20251118/libevtx/libevtx_libfguid.h +49 -0
- libevtx-20251118/libevtx/libevtx_libfwevt.h +62 -0
- libevtx-20251118/libevtx/libevtx_libuna.h +60 -0
- libevtx-20251118/libevtx/libevtx_notify.c +120 -0
- libevtx-20251118/libevtx/libevtx_notify.h +63 -0
- libevtx-20251118/libevtx/libevtx_record.c +2079 -0
- libevtx-20251118/libevtx/libevtx_record.h +337 -0
- libevtx-20251118/libevtx/libevtx_record_values.c +6312 -0
- libevtx-20251118/libevtx/libevtx_record_values.h +388 -0
- libevtx-20251118/libevtx/libevtx_support.c +429 -0
- libevtx-20251118/libevtx/libevtx_support.h +82 -0
- libevtx-20251118/libevtx/libevtx_template_definition.c +359 -0
- libevtx-20251118/libevtx/libevtx_template_definition.h +80 -0
- libevtx-20251118/libevtx/libevtx_types.h +56 -0
- libevtx-20251118/libevtx/libevtx_unused.h +44 -0
- libevtx-20251118/libevtx.spec +100 -0
- libevtx-20251118/libexe/Makefile.in +1050 -0
- libevtx-20251118/libfcache/Makefile.in +946 -0
- libevtx-20251118/libfdata/Makefile.in +999 -0
- libevtx-20251118/libfdatetime/Makefile.in +977 -0
- libevtx-20251118/libfguid/Makefile.in +927 -0
- libevtx-20251118/libfvalue/Makefile.in +1036 -0
- libevtx-20251118/libfwevt/Makefile.am +66 -0
- libevtx-20251118/libfwevt/Makefile.in +1088 -0
- libevtx-20251118/libfwevt/libfwevt_data_segment.c +274 -0
- libevtx-20251118/libfwevt/libfwevt_data_segment.h +94 -0
- libevtx-20251118/libfwevt/libfwevt_date_time.c +468 -0
- libevtx-20251118/libfwevt/libfwevt_date_time.h +45 -0
- libevtx-20251118/libfwevt/libfwevt_definitions.h +168 -0
- libevtx-20251118/libfwevt/libfwevt_floating_point.c +1296 -0
- libevtx-20251118/libfwevt/libfwevt_floating_point.h +77 -0
- libevtx-20251118/libfwevt/libfwevt_integer.c +866 -0
- libevtx-20251118/libfwevt/libfwevt_integer.h +102 -0
- libevtx-20251118/libfwevt/libfwevt_libfdatetime.h +56 -0
- libevtx-20251118/libfwevt/libfwevt_libfwnt.h +58 -0
- libevtx-20251118/libfwevt/libfwevt_xml_document.c +6739 -0
- libevtx-20251118/libfwevt/libfwevt_xml_string.c +984 -0
- libevtx-20251118/libfwevt/libfwevt_xml_string.h +72 -0
- libevtx-20251118/libfwevt/libfwevt_xml_tag.c +4655 -0
- libevtx-20251118/libfwevt/libfwevt_xml_tag.h +305 -0
- libevtx-20251118/libfwevt/libfwevt_xml_value.c +3611 -0
- libevtx-20251118/libfwevt/libfwevt_xml_value.h +266 -0
- libevtx-20251118/libfwnt/Makefile.in +1004 -0
- libevtx-20251118/libregf/Makefile.in +1116 -0
- libevtx-20251118/libuna/Makefile.in +1346 -0
- libevtx-20251118/libwrc/Makefile.in +1113 -0
- libevtx-20251118/ltmain.sh +11517 -0
- libevtx-20251118/m4/common.m4 +634 -0
- libevtx-20251118/m4/libbfio.m4 +215 -0
- libevtx-20251118/m4/libcdata.m4 +227 -0
- libevtx-20251118/m4/libcdirectory.m4 +212 -0
- libevtx-20251118/m4/libcerror.m4 +186 -0
- libevtx-20251118/m4/libcfile.m4 +317 -0
- libevtx-20251118/m4/libclocale.m4 +242 -0
- libevtx-20251118/m4/libcnotify.m4 +160 -0
- libevtx-20251118/m4/libcpath.m4 +274 -0
- libevtx-20251118/m4/libcsplit.m4 +183 -0
- libevtx-20251118/m4/libcthreads.m4 +214 -0
- libevtx-20251118/m4/libexe.m4 +175 -0
- libevtx-20251118/m4/libfcache.m4 +173 -0
- libevtx-20251118/m4/libfdata.m4 +241 -0
- libevtx-20251118/m4/libfdatetime.m4 +219 -0
- libevtx-20251118/m4/libfguid.m4 +153 -0
- libevtx-20251118/m4/libfvalue.m4 +240 -0
- libevtx-20251118/m4/libfwevt.m4 +708 -0
- libevtx-20251118/m4/libfwnt.m4 +172 -0
- libevtx-20251118/m4/libregf.m4 +156 -0
- libevtx-20251118/m4/libtool.m4 +8491 -0
- libevtx-20251118/m4/libuna.m4 +311 -0
- libevtx-20251118/m4/libwrc.m4 +217 -0
- libevtx-20251118/m4/ltoptions.m4 +467 -0
- libevtx-20251118/m4/ltsugar.m4 +124 -0
- libevtx-20251118/m4/ltversion.m4 +24 -0
- libevtx-20251118/m4/lt~obsolete.m4 +99 -0
- libevtx-20251118/m4/pthread.m4 +108 -0
- libevtx-20251118/manuals/Makefile.in +873 -0
- libevtx-20251118/manuals/evtxexport.1 +89 -0
- libevtx-20251118/manuals/evtxinfo.1 +56 -0
- libevtx-20251118/manuals/libevtx.3 +215 -0
- libevtx-20251118/missing +236 -0
- libevtx-20251118/msvscpp/Makefile.in +789 -0
- libevtx-20251118/ossfuzz/Makefile.in +1022 -0
- libevtx-20251118/ossfuzz/file_fuzzer.cc +99 -0
- libevtx-20251118/ossfuzz/ossfuzz_libbfio.h +58 -0
- libevtx-20251118/ossfuzz/ossfuzz_libevtx.h +30 -0
- libevtx-20251118/ossfuzz/record_fuzzer.cc +121 -0
- libevtx-20251118/pyevtx/Makefile.in +1145 -0
- libevtx-20251118/pyevtx/pyevtx.c +742 -0
- libevtx-20251118/pyevtx/pyevtx.h +71 -0
- libevtx-20251118/pyevtx/pyevtx_codepage.c +138 -0
- libevtx-20251118/pyevtx/pyevtx_codepage.h +42 -0
- libevtx-20251118/pyevtx/pyevtx_datetime.c +691 -0
- libevtx-20251118/pyevtx/pyevtx_datetime.h +65 -0
- libevtx-20251118/pyevtx/pyevtx_error.c +422 -0
- libevtx-20251118/pyevtx/pyevtx_error.h +60 -0
- libevtx-20251118/pyevtx/pyevtx_event_levels.c +334 -0
- libevtx-20251118/pyevtx/pyevtx_event_levels.h +63 -0
- libevtx-20251118/pyevtx/pyevtx_file.c +1774 -0
- libevtx-20251118/pyevtx/pyevtx_file.h +145 -0
- libevtx-20251118/pyevtx/pyevtx_file_flags.c +292 -0
- libevtx-20251118/pyevtx/pyevtx_file_flags.h +63 -0
- libevtx-20251118/pyevtx/pyevtx_file_object_io_handle.c +1524 -0
- libevtx-20251118/pyevtx/pyevtx_file_object_io_handle.h +141 -0
- libevtx-20251118/pyevtx/pyevtx_integer.c +399 -0
- libevtx-20251118/pyevtx/pyevtx_integer.h +56 -0
- libevtx-20251118/pyevtx/pyevtx_libbfio.h +54 -0
- libevtx-20251118/pyevtx/pyevtx_libcerror.h +50 -0
- libevtx-20251118/pyevtx/pyevtx_libclocale.h +50 -0
- libevtx-20251118/pyevtx/pyevtx_libevtx.h +30 -0
- libevtx-20251118/pyevtx/pyevtx_python.h +83 -0
- libevtx-20251118/pyevtx/pyevtx_record.c +2237 -0
- libevtx-20251118/pyevtx/pyevtx_record.h +155 -0
- libevtx-20251118/pyevtx/pyevtx_records.c +452 -0
- libevtx-20251118/pyevtx/pyevtx_records.h +95 -0
- libevtx-20251118/pyevtx/pyevtx_strings.c +451 -0
- libevtx-20251118/pyevtx/pyevtx_strings.h +95 -0
- libevtx-20251118/pyevtx/pyevtx_unused.h +44 -0
- libevtx-20251118/setup.cfg +16 -0
- libevtx-20251118/setup.cfg.in +16 -0
- libevtx-20251118/setup.py +293 -0
- libevtx-20251118/test-driver +160 -0
- libevtx-20251118/tests/Makefile.in +2033 -0
- libevtx-20251118/tests/evtx_test_chunk.c +567 -0
- libevtx-20251118/tests/evtx_test_chunks_table.c +112 -0
- libevtx-20251118/tests/evtx_test_error.c +150 -0
- libevtx-20251118/tests/evtx_test_file.c +2239 -0
- libevtx-20251118/tests/evtx_test_functions.c +562 -0
- libevtx-20251118/tests/evtx_test_functions.h +66 -0
- libevtx-20251118/tests/evtx_test_getopt.c +190 -0
- libevtx-20251118/tests/evtx_test_getopt.h +68 -0
- libevtx-20251118/tests/evtx_test_io_handle.c +443 -0
- libevtx-20251118/tests/evtx_test_libbfio.h +58 -0
- libevtx-20251118/tests/evtx_test_libcerror.h +50 -0
- libevtx-20251118/tests/evtx_test_libclocale.h +50 -0
- libevtx-20251118/tests/evtx_test_libcnotify.h +50 -0
- libevtx-20251118/tests/evtx_test_libevtx.h +30 -0
- libevtx-20251118/tests/evtx_test_libuna.h +60 -0
- libevtx-20251118/tests/evtx_test_macros.h +257 -0
- libevtx-20251118/tests/evtx_test_memory.c +177 -0
- libevtx-20251118/tests/evtx_test_memory.h +52 -0
- libevtx-20251118/tests/evtx_test_notify.c +229 -0
- libevtx-20251118/tests/evtx_test_record.c +178 -0
- libevtx-20251118/tests/evtx_test_record_values.c +3802 -0
- libevtx-20251118/tests/evtx_test_support.c +796 -0
- libevtx-20251118/tests/evtx_test_template_definition.c +305 -0
- libevtx-20251118/tests/evtx_test_tools_info_handle.c +299 -0
- libevtx-20251118/tests/evtx_test_tools_message_handle.c +299 -0
- libevtx-20251118/tests/evtx_test_tools_message_string.c +304 -0
- libevtx-20251118/tests/evtx_test_tools_output.c +105 -0
- libevtx-20251118/tests/evtx_test_tools_path_handle.c +299 -0
- libevtx-20251118/tests/evtx_test_tools_registry_file.c +299 -0
- libevtx-20251118/tests/evtx_test_tools_resource_file.c +304 -0
- libevtx-20251118/tests/evtx_test_tools_signal.c +213 -0
- libevtx-20251118/tests/evtx_test_unused.h +50 -0
- libevtx-20251118/tests/pyevtx_test_file.py +215 -0
- libevtx-20251118/tests/pyevtx_test_support.py +111 -0
- libevtx-20240427/AUTHORS +0 -4
- libevtx-20240427/INSTALL +0 -368
- libevtx-20240427/Makefile.in +0 -1275
- libevtx-20240427/PKG-INFO +0 -13
- libevtx-20240427/aclocal.m4 +0 -1553
- libevtx-20240427/common/Makefile.in +0 -831
- libevtx-20240427/common/byte_stream.h +0 -257
- libevtx-20240427/common/common.h +0 -43
- libevtx-20240427/common/config.h +0 -668
- libevtx-20240427/common/config.h.in +0 -667
- libevtx-20240427/common/config_borlandc.h +0 -26
- libevtx-20240427/common/config_msc.h +0 -34
- libevtx-20240427/common/config_winapi.h +0 -95
- libevtx-20240427/common/file_stream.h +0 -151
- libevtx-20240427/common/memory.h +0 -129
- libevtx-20240427/common/narrow_string.h +0 -187
- libevtx-20240427/common/system_string.h +0 -154
- libevtx-20240427/common/types.h +0 -392
- libevtx-20240427/common/types.h.in +0 -392
- libevtx-20240427/common/wide_string.h +0 -175
- libevtx-20240427/compile +0 -348
- libevtx-20240427/config.guess +0 -1774
- libevtx-20240427/config.sub +0 -1907
- libevtx-20240427/configure +0 -73872
- libevtx-20240427/configure.ac +0 -275
- libevtx-20240427/depcomp +0 -791
- libevtx-20240427/dpkg/changelog +0 -5
- libevtx-20240427/dpkg/copyright +0 -25
- libevtx-20240427/evtxtools/Makefile.in +0 -1116
- libevtx-20240427/evtxtools/evtxexport.c +0 -606
- libevtx-20240427/evtxtools/evtxinfo.c +0 -333
- libevtx-20240427/evtxtools/evtxinput.c +0 -251
- libevtx-20240427/evtxtools/evtxinput.h +0 -62
- libevtx-20240427/evtxtools/evtxtools_getopt.c +0 -190
- libevtx-20240427/evtxtools/evtxtools_getopt.h +0 -68
- libevtx-20240427/evtxtools/evtxtools_i18n.h +0 -48
- libevtx-20240427/evtxtools/evtxtools_libbfio.h +0 -58
- libevtx-20240427/evtxtools/evtxtools_libcdirectory.h +0 -50
- libevtx-20240427/evtxtools/evtxtools_libcerror.h +0 -50
- libevtx-20240427/evtxtools/evtxtools_libclocale.h +0 -50
- libevtx-20240427/evtxtools/evtxtools_libcnotify.h +0 -50
- libevtx-20240427/evtxtools/evtxtools_libcpath.h +0 -48
- libevtx-20240427/evtxtools/evtxtools_libcsplit.h +0 -52
- libevtx-20240427/evtxtools/evtxtools_libevtx.h +0 -30
- libevtx-20240427/evtxtools/evtxtools_libexe.h +0 -50
- libevtx-20240427/evtxtools/evtxtools_libfcache.h +0 -50
- libevtx-20240427/evtxtools/evtxtools_libfdatetime.h +0 -56
- libevtx-20240427/evtxtools/evtxtools_libfguid.h +0 -49
- libevtx-20240427/evtxtools/evtxtools_libfvalue.h +0 -59
- libevtx-20240427/evtxtools/evtxtools_libfwevt.h +0 -62
- libevtx-20240427/evtxtools/evtxtools_libfwnt.h +0 -58
- libevtx-20240427/evtxtools/evtxtools_libregf.h +0 -52
- libevtx-20240427/evtxtools/evtxtools_libuna.h +0 -60
- libevtx-20240427/evtxtools/evtxtools_libwrc.h +0 -56
- libevtx-20240427/evtxtools/evtxtools_output.c +0 -207
- libevtx-20240427/evtxtools/evtxtools_output.h +0 -55
- libevtx-20240427/evtxtools/evtxtools_signal.c +0 -262
- libevtx-20240427/evtxtools/evtxtools_signal.h +0 -72
- libevtx-20240427/evtxtools/evtxtools_system_split_string.h +0 -73
- libevtx-20240427/evtxtools/evtxtools_unused.h +0 -50
- libevtx-20240427/evtxtools/evtxtools_wide_string.c +0 -69
- libevtx-20240427/evtxtools/evtxtools_wide_string.h +0 -54
- libevtx-20240427/evtxtools/export_handle.c +0 -2901
- libevtx-20240427/evtxtools/export_handle.h +0 -257
- libevtx-20240427/evtxtools/info_handle.c +0 -604
- libevtx-20240427/evtxtools/info_handle.h +0 -101
- libevtx-20240427/evtxtools/log_handle.c +0 -276
- libevtx-20240427/evtxtools/log_handle.h +0 -71
- libevtx-20240427/evtxtools/message_handle.c +0 -4109
- libevtx-20240427/evtxtools/message_handle.h +0 -304
- libevtx-20240427/evtxtools/message_string.c +0 -611
- libevtx-20240427/evtxtools/message_string.h +0 -79
- libevtx-20240427/evtxtools/path_handle.c +0 -407
- libevtx-20240427/evtxtools/path_handle.h +0 -69
- libevtx-20240427/evtxtools/registry_file.c +0 -903
- libevtx-20240427/evtxtools/registry_file.h +0 -124
- libevtx-20240427/evtxtools/resource_file.c +0 -2570
- libevtx-20240427/evtxtools/resource_file.h +0 -192
- libevtx-20240427/include/Makefile.in +0 -893
- libevtx-20240427/include/libevtx/codepage.h +0 -122
- libevtx-20240427/include/libevtx/definitions.h +0 -73
- libevtx-20240427/include/libevtx/definitions.h.in +0 -73
- libevtx-20240427/include/libevtx/error.h +0 -291
- libevtx-20240427/include/libevtx/extern.h +0 -44
- libevtx-20240427/include/libevtx/features.h +0 -50
- libevtx-20240427/include/libevtx/features.h.in +0 -50
- libevtx-20240427/include/libevtx/types.h +0 -213
- libevtx-20240427/include/libevtx/types.h.in +0 -213
- libevtx-20240427/include/libevtx.h +0 -826
- libevtx-20240427/include/libevtx.h.in +0 -826
- libevtx-20240427/install-sh +0 -541
- libevtx-20240427/libbfio/Makefile.in +0 -994
- libevtx-20240427/libcdata/Makefile.in +0 -973
- libevtx-20240427/libcdirectory/Makefile.in +0 -945
- libevtx-20240427/libcerror/Makefile.in +0 -915
- libevtx-20240427/libcfile/Makefile.in +0 -942
- libevtx-20240427/libclocale/Makefile.in +0 -925
- libevtx-20240427/libcnotify/Makefile.in +0 -923
- libevtx-20240427/libcpath/Makefile.in +0 -927
- libevtx-20240427/libcsplit/Makefile.in +0 -940
- libevtx-20240427/libcthreads/Makefile.in +0 -975
- libevtx-20240427/libevtx/Makefile.in +0 -1097
- libevtx-20240427/libevtx/evtx_chunk.h +0 -104
- libevtx-20240427/libevtx/evtx_event_record.h +0 -64
- libevtx-20240427/libevtx/evtx_file_header.h +0 -104
- libevtx-20240427/libevtx/libevtx.c +0 -80
- libevtx-20240427/libevtx/libevtx.rc +0 -38
- libevtx-20240427/libevtx/libevtx.rc.in +0 -38
- libevtx-20240427/libevtx/libevtx_byte_stream.c +0 -104
- libevtx-20240427/libevtx/libevtx_byte_stream.h +0 -44
- libevtx-20240427/libevtx/libevtx_checksum.c +0 -200
- libevtx-20240427/libevtx/libevtx_checksum.h +0 -56
- libevtx-20240427/libevtx/libevtx_chunk.c +0 -1163
- libevtx-20240427/libevtx/libevtx_chunk.h +0 -109
- libevtx-20240427/libevtx/libevtx_chunks_table.c +0 -446
- libevtx-20240427/libevtx/libevtx_chunks_table.h +0 -83
- libevtx-20240427/libevtx/libevtx_codepage.c +0 -107
- libevtx-20240427/libevtx/libevtx_codepage.h +0 -116
- libevtx-20240427/libevtx/libevtx_debug.c +0 -256
- libevtx-20240427/libevtx/libevtx_debug.h +0 -55
- libevtx-20240427/libevtx/libevtx_definitions.h +0 -207
- libevtx-20240427/libevtx/libevtx_definitions.h.in +0 -207
- libevtx-20240427/libevtx/libevtx_error.c +0 -111
- libevtx-20240427/libevtx/libevtx_error.h +0 -74
- libevtx-20240427/libevtx/libevtx_extern.h +0 -46
- libevtx-20240427/libevtx/libevtx_file.c +0 -2285
- libevtx-20240427/libevtx/libevtx_file.h +0 -212
- libevtx-20240427/libevtx/libevtx_i18n.c +0 -63
- libevtx-20240427/libevtx/libevtx_i18n.h +0 -55
- libevtx-20240427/libevtx/libevtx_io_handle.c +0 -584
- libevtx-20240427/libevtx/libevtx_io_handle.h +0 -127
- libevtx-20240427/libevtx/libevtx_libbfio.h +0 -58
- libevtx-20240427/libevtx/libevtx_libcdata.h +0 -54
- libevtx-20240427/libevtx/libevtx_libcerror.h +0 -50
- libevtx-20240427/libevtx/libevtx_libclocale.h +0 -50
- libevtx-20240427/libevtx/libevtx_libcnotify.h +0 -50
- libevtx-20240427/libevtx/libevtx_libfcache.h +0 -50
- libevtx-20240427/libevtx/libevtx_libfdata.h +0 -54
- libevtx-20240427/libevtx/libevtx_libfdatetime.h +0 -56
- libevtx-20240427/libevtx/libevtx_libfguid.h +0 -49
- libevtx-20240427/libevtx/libevtx_libfwevt.h +0 -62
- libevtx-20240427/libevtx/libevtx_libuna.h +0 -60
- libevtx-20240427/libevtx/libevtx_notify.c +0 -120
- libevtx-20240427/libevtx/libevtx_notify.h +0 -63
- libevtx-20240427/libevtx/libevtx_record.c +0 -1895
- libevtx-20240427/libevtx/libevtx_record.h +0 -311
- libevtx-20240427/libevtx/libevtx_record_values.c +0 -5598
- libevtx-20240427/libevtx/libevtx_record_values.h +0 -366
- libevtx-20240427/libevtx/libevtx_support.c +0 -429
- libevtx-20240427/libevtx/libevtx_support.h +0 -82
- libevtx-20240427/libevtx/libevtx_template_definition.c +0 -359
- libevtx-20240427/libevtx/libevtx_template_definition.h +0 -80
- libevtx-20240427/libevtx/libevtx_types.h +0 -56
- libevtx-20240427/libevtx/libevtx_unused.h +0 -44
- libevtx-20240427/libevtx.spec +0 -100
- libevtx-20240427/libexe/Makefile.in +0 -1040
- libevtx-20240427/libfcache/Makefile.in +0 -936
- libevtx-20240427/libfdata/Makefile.in +0 -989
- libevtx-20240427/libfdatetime/Makefile.in +0 -967
- libevtx-20240427/libfguid/Makefile.in +0 -917
- libevtx-20240427/libfvalue/Makefile.in +0 -1026
- libevtx-20240427/libfwevt/Makefile.am +0 -61
- libevtx-20240427/libfwevt/Makefile.in +0 -1049
- libevtx-20240427/libfwevt/libfwevt_date_time.c +0 -453
- libevtx-20240427/libfwevt/libfwevt_date_time.h +0 -45
- libevtx-20240427/libfwevt/libfwevt_definitions.h +0 -168
- libevtx-20240427/libfwevt/libfwevt_libfvalue.h +0 -60
- libevtx-20240427/libfwevt/libfwevt_xml_document.c +0 -6802
- libevtx-20240427/libfwevt/libfwevt_xml_tag.c +0 -6276
- libevtx-20240427/libfwevt/libfwevt_xml_tag.h +0 -346
- libevtx-20240427/libfwevt/libfwevt_xml_value.c +0 -1681
- libevtx-20240427/libfwevt/libfwevt_xml_value.h +0 -227
- libevtx-20240427/libfwnt/Makefile.in +0 -994
- libevtx-20240427/libregf/Makefile.in +0 -1106
- libevtx-20240427/libuna/Makefile.in +0 -1336
- libevtx-20240427/libwrc/Makefile.in +0 -1103
- libevtx-20240427/ltmain.sh +0 -11429
- libevtx-20240427/m4/common.m4 +0 -578
- libevtx-20240427/m4/libbfio.m4 +0 -422
- libevtx-20240427/m4/libcdata.m4 +0 -599
- libevtx-20240427/m4/libcdirectory.m4 +0 -286
- libevtx-20240427/m4/libcerror.m4 +0 -237
- libevtx-20240427/m4/libcfile.m4 +0 -429
- libevtx-20240427/m4/libclocale.m4 +0 -291
- libevtx-20240427/m4/libcnotify.m4 +0 -209
- libevtx-20240427/m4/libcpath.m4 +0 -344
- libevtx-20240427/m4/libcsplit.m4 +0 -249
- libevtx-20240427/m4/libcthreads.m4 +0 -385
- libevtx-20240427/m4/libexe.m4 +0 -214
- libevtx-20240427/m4/libfcache.m4 +0 -266
- libevtx-20240427/m4/libfdata.m4 +0 -555
- libevtx-20240427/m4/libfdatetime.m4 +0 -560
- libevtx-20240427/m4/libfguid.m4 +0 -210
- libevtx-20240427/m4/libfvalue.m4 +0 -691
- libevtx-20240427/m4/libfwevt.m4 +0 -728
- libevtx-20240427/m4/libfwnt.m4 +0 -320
- libevtx-20240427/m4/libregf.m4 +0 -171
- libevtx-20240427/m4/libtool.m4 +0 -8403
- libevtx-20240427/m4/libuna.m4 +0 -1044
- libevtx-20240427/m4/libwrc.m4 +0 -528
- libevtx-20240427/m4/ltoptions.m4 +0 -437
- libevtx-20240427/m4/ltsugar.m4 +0 -124
- libevtx-20240427/m4/ltversion.m4 +0 -24
- libevtx-20240427/m4/lt~obsolete.m4 +0 -99
- libevtx-20240427/m4/pthread.m4 +0 -196
- libevtx-20240427/manuals/Makefile.in +0 -862
- libevtx-20240427/manuals/evtxexport.1 +0 -89
- libevtx-20240427/manuals/evtxinfo.1 +0 -56
- libevtx-20240427/manuals/libevtx.3 +0 -207
- libevtx-20240427/missing +0 -215
- libevtx-20240427/msvscpp/Makefile.in +0 -777
- libevtx-20240427/ossfuzz/Makefile.in +0 -1015
- libevtx-20240427/ossfuzz/file_fuzzer.cc +0 -99
- libevtx-20240427/ossfuzz/ossfuzz_libbfio.h +0 -58
- libevtx-20240427/ossfuzz/ossfuzz_libevtx.h +0 -30
- libevtx-20240427/ossfuzz/record_fuzzer.cc +0 -121
- libevtx-20240427/pyevtx/Makefile.in +0 -1136
- libevtx-20240427/pyevtx/pyevtx.c +0 -742
- libevtx-20240427/pyevtx/pyevtx.h +0 -71
- libevtx-20240427/pyevtx/pyevtx_codepage.c +0 -138
- libevtx-20240427/pyevtx/pyevtx_codepage.h +0 -42
- libevtx-20240427/pyevtx/pyevtx_datetime.c +0 -691
- libevtx-20240427/pyevtx/pyevtx_datetime.h +0 -65
- libevtx-20240427/pyevtx/pyevtx_error.c +0 -422
- libevtx-20240427/pyevtx/pyevtx_error.h +0 -60
- libevtx-20240427/pyevtx/pyevtx_event_levels.c +0 -334
- libevtx-20240427/pyevtx/pyevtx_event_levels.h +0 -63
- libevtx-20240427/pyevtx/pyevtx_file.c +0 -1774
- libevtx-20240427/pyevtx/pyevtx_file.h +0 -145
- libevtx-20240427/pyevtx/pyevtx_file_flags.c +0 -292
- libevtx-20240427/pyevtx/pyevtx_file_flags.h +0 -63
- libevtx-20240427/pyevtx/pyevtx_file_object_io_handle.c +0 -1524
- libevtx-20240427/pyevtx/pyevtx_file_object_io_handle.h +0 -141
- libevtx-20240427/pyevtx/pyevtx_integer.c +0 -399
- libevtx-20240427/pyevtx/pyevtx_integer.h +0 -56
- libevtx-20240427/pyevtx/pyevtx_libbfio.h +0 -54
- libevtx-20240427/pyevtx/pyevtx_libcerror.h +0 -50
- libevtx-20240427/pyevtx/pyevtx_libclocale.h +0 -50
- libevtx-20240427/pyevtx/pyevtx_libevtx.h +0 -30
- libevtx-20240427/pyevtx/pyevtx_python.h +0 -83
- libevtx-20240427/pyevtx/pyevtx_record.c +0 -2110
- libevtx-20240427/pyevtx/pyevtx_record.h +0 -151
- libevtx-20240427/pyevtx/pyevtx_records.c +0 -452
- libevtx-20240427/pyevtx/pyevtx_records.h +0 -95
- libevtx-20240427/pyevtx/pyevtx_strings.c +0 -451
- libevtx-20240427/pyevtx/pyevtx_strings.h +0 -95
- libevtx-20240427/pyevtx/pyevtx_unused.h +0 -44
- libevtx-20240427/setup.cfg +0 -16
- libevtx-20240427/setup.cfg.in +0 -16
- libevtx-20240427/setup.py +0 -293
- libevtx-20240427/test-driver +0 -153
- libevtx-20240427/tests/Makefile.in +0 -1996
- libevtx-20240427/tests/evtx_test_chunk.c +0 -567
- libevtx-20240427/tests/evtx_test_chunks_table.c +0 -112
- libevtx-20240427/tests/evtx_test_error.c +0 -150
- libevtx-20240427/tests/evtx_test_file.c +0 -2239
- libevtx-20240427/tests/evtx_test_functions.c +0 -562
- libevtx-20240427/tests/evtx_test_functions.h +0 -66
- libevtx-20240427/tests/evtx_test_getopt.c +0 -190
- libevtx-20240427/tests/evtx_test_getopt.h +0 -68
- libevtx-20240427/tests/evtx_test_io_handle.c +0 -443
- libevtx-20240427/tests/evtx_test_libbfio.h +0 -58
- libevtx-20240427/tests/evtx_test_libcerror.h +0 -50
- libevtx-20240427/tests/evtx_test_libclocale.h +0 -50
- libevtx-20240427/tests/evtx_test_libcnotify.h +0 -50
- libevtx-20240427/tests/evtx_test_libevtx.h +0 -30
- libevtx-20240427/tests/evtx_test_libuna.h +0 -60
- libevtx-20240427/tests/evtx_test_macros.h +0 -257
- libevtx-20240427/tests/evtx_test_memory.c +0 -177
- libevtx-20240427/tests/evtx_test_memory.h +0 -52
- libevtx-20240427/tests/evtx_test_notify.c +0 -229
- libevtx-20240427/tests/evtx_test_record.c +0 -178
- libevtx-20240427/tests/evtx_test_record_values.c +0 -3802
- libevtx-20240427/tests/evtx_test_support.c +0 -796
- libevtx-20240427/tests/evtx_test_template_definition.c +0 -305
- libevtx-20240427/tests/evtx_test_tools_info_handle.c +0 -299
- libevtx-20240427/tests/evtx_test_tools_message_handle.c +0 -299
- libevtx-20240427/tests/evtx_test_tools_message_string.c +0 -304
- libevtx-20240427/tests/evtx_test_tools_output.c +0 -105
- libevtx-20240427/tests/evtx_test_tools_path_handle.c +0 -299
- libevtx-20240427/tests/evtx_test_tools_registry_file.c +0 -299
- libevtx-20240427/tests/evtx_test_tools_resource_file.c +0 -304
- libevtx-20240427/tests/evtx_test_tools_signal.c +0 -213
- libevtx-20240427/tests/evtx_test_unused.h +0 -50
- libevtx-20240427/tests/pyevtx_test_file.py +0 -215
- libevtx-20240427/tests/pyevtx_test_support.py +0 -111
- {libevtx-20240427 → libevtx-20251118}/ABOUT-NLS +0 -0
- {libevtx-20240427 → libevtx-20251118}/COPYING +0 -0
- {libevtx-20240427 → libevtx-20251118}/COPYING.LESSER +0 -0
- {libevtx-20240427 → libevtx-20251118}/ChangeLog +0 -0
- {libevtx-20240427 → libevtx-20251118}/Makefile.am +0 -0
- {libevtx-20240427 → libevtx-20251118}/NEWS +0 -0
- {libevtx-20240427 → libevtx-20251118}/README +0 -0
- {libevtx-20240427 → libevtx-20251118}/acinclude.m4 +0 -0
- {libevtx-20240427 → libevtx-20251118}/common/Makefile.am +0 -0
- {libevtx-20240427 → libevtx-20251118}/config.rpath +0 -0
- {libevtx-20240427 → libevtx-20251118}/dpkg/changelog.in +0 -0
- {libevtx-20240427 → libevtx-20251118}/dpkg/compat +0 -0
- {libevtx-20240427 → libevtx-20251118}/dpkg/control +0 -0
- {libevtx-20240427 → libevtx-20251118}/dpkg/libevtx-dev.install +0 -0
- {libevtx-20240427 → libevtx-20251118}/dpkg/libevtx-python3.install +0 -0
- {libevtx-20240427 → libevtx-20251118}/dpkg/libevtx-tools.install +0 -0
- {libevtx-20240427 → libevtx-20251118}/dpkg/libevtx.install +0 -0
- {libevtx-20240427 → libevtx-20251118}/dpkg/rules +0 -0
- {libevtx-20240427 → libevtx-20251118}/dpkg/source/format +0 -0
- {libevtx-20240427 → libevtx-20251118}/evtxtools/Makefile.am +0 -0
- {libevtx-20240427 → libevtx-20251118}/include/Makefile.am +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/Makefile.am +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_codepage.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_definitions.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_error.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_error.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_extern.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_file.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_file.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_file_io_handle.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_file_io_handle.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_file_pool.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_file_pool.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_file_range.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_file_range.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_file_range_io_handle.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_file_range_io_handle.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_handle.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_handle.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_libcdata.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_libcerror.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_libcfile.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_libclocale.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_libcpath.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_libcthreads.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_libuna.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_memory_range.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_memory_range.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_memory_range_io_handle.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_memory_range_io_handle.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_pool.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_pool.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_support.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_support.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_system_string.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_system_string.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_types.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libbfio/libbfio_unused.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdata/Makefile.am +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdata/libcdata_array.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdata/libcdata_array.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdata/libcdata_btree.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdata/libcdata_btree.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdata/libcdata_btree_node.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdata/libcdata_btree_node.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdata/libcdata_btree_values_list.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdata/libcdata_btree_values_list.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdata/libcdata_definitions.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdata/libcdata_error.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdata/libcdata_error.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdata/libcdata_extern.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdata/libcdata_libcerror.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdata/libcdata_libcthreads.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdata/libcdata_list.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdata/libcdata_list.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdata/libcdata_list_element.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdata/libcdata_list_element.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdata/libcdata_range_list.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdata/libcdata_range_list.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdata/libcdata_range_list_value.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdata/libcdata_range_list_value.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdata/libcdata_support.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdata/libcdata_support.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdata/libcdata_tree_node.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdata/libcdata_tree_node.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdata/libcdata_types.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdata/libcdata_unused.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdirectory/Makefile.am +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdirectory/libcdirectory_definitions.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdirectory/libcdirectory_directory.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdirectory/libcdirectory_directory.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdirectory/libcdirectory_directory_entry.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdirectory/libcdirectory_directory_entry.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdirectory/libcdirectory_error.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdirectory/libcdirectory_error.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdirectory/libcdirectory_extern.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdirectory/libcdirectory_libcerror.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdirectory/libcdirectory_libclocale.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdirectory/libcdirectory_libuna.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdirectory/libcdirectory_support.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdirectory/libcdirectory_support.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdirectory/libcdirectory_system_string.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdirectory/libcdirectory_system_string.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdirectory/libcdirectory_types.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdirectory/libcdirectory_unused.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdirectory/libcdirectory_wide_string.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcdirectory/libcdirectory_wide_string.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcerror/Makefile.am +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcerror/libcerror_definitions.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcerror/libcerror_error.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcerror/libcerror_error.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcerror/libcerror_extern.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcerror/libcerror_support.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcerror/libcerror_support.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcerror/libcerror_system.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcerror/libcerror_system.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcerror/libcerror_types.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcerror/libcerror_unused.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcfile/Makefile.am +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcfile/libcfile_definitions.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcfile/libcfile_error.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcfile/libcfile_error.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcfile/libcfile_extern.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcfile/libcfile_file.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcfile/libcfile_file.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcfile/libcfile_libcerror.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcfile/libcfile_libclocale.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcfile/libcfile_libcnotify.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcfile/libcfile_libuna.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcfile/libcfile_notify.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcfile/libcfile_notify.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcfile/libcfile_support.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcfile/libcfile_support.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcfile/libcfile_system_string.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcfile/libcfile_system_string.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcfile/libcfile_types.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcfile/libcfile_unused.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcfile/libcfile_winapi.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcfile/libcfile_winapi.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libclocale/Makefile.am +0 -0
- {libevtx-20240427 → libevtx-20251118}/libclocale/libclocale_codepage.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libclocale/libclocale_codepage.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libclocale/libclocale_definitions.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libclocale/libclocale_extern.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libclocale/libclocale_libcerror.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libclocale/libclocale_locale.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libclocale/libclocale_locale.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libclocale/libclocale_support.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libclocale/libclocale_support.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libclocale/libclocale_unused.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libclocale/libclocale_wide_string.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libclocale/libclocale_wide_string.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcnotify/Makefile.am +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcnotify/libcnotify_definitions.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcnotify/libcnotify_extern.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcnotify/libcnotify_libcerror.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcnotify/libcnotify_print.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcnotify/libcnotify_print.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcnotify/libcnotify_stream.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcnotify/libcnotify_stream.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcnotify/libcnotify_support.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcnotify/libcnotify_support.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcnotify/libcnotify_unused.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcnotify/libcnotify_verbose.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcnotify/libcnotify_verbose.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcpath/Makefile.am +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcpath/libcpath_definitions.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcpath/libcpath_error.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcpath/libcpath_error.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcpath/libcpath_extern.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcpath/libcpath_libcerror.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcpath/libcpath_libclocale.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcpath/libcpath_libcsplit.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcpath/libcpath_libuna.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcpath/libcpath_path.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcpath/libcpath_path.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcpath/libcpath_support.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcpath/libcpath_support.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcpath/libcpath_system_string.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcpath/libcpath_system_string.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcpath/libcpath_unused.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcsplit/Makefile.am +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcsplit/libcsplit_definitions.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcsplit/libcsplit_error.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcsplit/libcsplit_error.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcsplit/libcsplit_extern.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcsplit/libcsplit_libcerror.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcsplit/libcsplit_narrow_split_string.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcsplit/libcsplit_narrow_split_string.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcsplit/libcsplit_narrow_string.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcsplit/libcsplit_narrow_string.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcsplit/libcsplit_support.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcsplit/libcsplit_support.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcsplit/libcsplit_types.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcsplit/libcsplit_unused.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcsplit/libcsplit_wide_split_string.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcsplit/libcsplit_wide_split_string.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcsplit/libcsplit_wide_string.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcsplit/libcsplit_wide_string.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcthreads/Makefile.am +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcthreads/libcthreads_condition.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcthreads/libcthreads_condition.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcthreads/libcthreads_definitions.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcthreads/libcthreads_error.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcthreads/libcthreads_error.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcthreads/libcthreads_extern.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcthreads/libcthreads_libcerror.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcthreads/libcthreads_lock.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcthreads/libcthreads_lock.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcthreads/libcthreads_mutex.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcthreads/libcthreads_mutex.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcthreads/libcthreads_queue.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcthreads/libcthreads_queue.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcthreads/libcthreads_read_write_lock.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcthreads/libcthreads_read_write_lock.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcthreads/libcthreads_repeating_thread.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcthreads/libcthreads_repeating_thread.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcthreads/libcthreads_support.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcthreads/libcthreads_support.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcthreads/libcthreads_thread.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcthreads/libcthreads_thread.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcthreads/libcthreads_thread_attributes.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcthreads/libcthreads_thread_attributes.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcthreads/libcthreads_thread_pool.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcthreads/libcthreads_thread_pool.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcthreads/libcthreads_types.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libcthreads/libcthreads_unused.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libevtx/Makefile.am +0 -0
- {libevtx-20240427 → libevtx-20251118}/libevtx.pc.in +0 -0
- {libevtx-20240427 → libevtx-20251118}/libevtx.spec.in +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/Makefile.am +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/exe_file_header.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/exe_le_header.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/exe_mz_header.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/exe_ne_header.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/exe_pe_header.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/exe_section_table.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_codepage.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_coff_header.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_coff_header.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_coff_optional_header.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_coff_optional_header.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_data_directory_descriptor.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_debug.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_debug.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_debug_data.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_debug_data.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_definitions.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_error.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_error.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_export_table.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_export_table.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_extern.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_file.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_file.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_import_table.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_import_table.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_io_handle.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_io_handle.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_le_header.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_le_header.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_libbfio.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_libcdata.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_libcerror.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_libclocale.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_libcnotify.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_libfcache.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_libfdata.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_libfdatetime.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_libuna.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_mz_header.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_mz_header.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_ne_header.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_ne_header.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_notify.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_notify.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_section.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_section.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_section_descriptor.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_section_descriptor.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_section_io_handle.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_section_io_handle.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_support.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_support.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_types.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libexe/libexe_unused.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfcache/Makefile.am +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfcache/libfcache_cache.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfcache/libfcache_cache.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfcache/libfcache_cache_value.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfcache/libfcache_cache_value.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfcache/libfcache_date_time.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfcache/libfcache_date_time.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfcache/libfcache_definitions.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfcache/libfcache_error.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfcache/libfcache_error.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfcache/libfcache_extern.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfcache/libfcache_libcdata.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfcache/libfcache_libcerror.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfcache/libfcache_support.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfcache/libfcache_support.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfcache/libfcache_types.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfcache/libfcache_unused.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdata/Makefile.am +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdata/libfdata_area.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdata/libfdata_area.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdata/libfdata_cache.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdata/libfdata_cache.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdata/libfdata_definitions.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdata/libfdata_error.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdata/libfdata_error.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdata/libfdata_extern.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdata/libfdata_libcdata.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdata/libfdata_libcerror.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdata/libfdata_libcnotify.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdata/libfdata_libfcache.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdata/libfdata_list.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdata/libfdata_list.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdata/libfdata_list_element.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdata/libfdata_list_element.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdata/libfdata_mapped_range.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdata/libfdata_mapped_range.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdata/libfdata_notify.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdata/libfdata_notify.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdata/libfdata_range.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdata/libfdata_range.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdata/libfdata_range_list.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdata/libfdata_range_list.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdata/libfdata_segments_array.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdata/libfdata_segments_array.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdata/libfdata_stream.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdata/libfdata_stream.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdata/libfdata_support.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdata/libfdata_support.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdata/libfdata_types.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdata/libfdata_unused.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdata/libfdata_vector.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdata/libfdata_vector.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdatetime/Makefile.am +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdatetime/libfdatetime_date_time_values.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdatetime/libfdatetime_date_time_values.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdatetime/libfdatetime_definitions.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdatetime/libfdatetime_error.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdatetime/libfdatetime_error.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdatetime/libfdatetime_extern.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdatetime/libfdatetime_fat_date_time.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdatetime/libfdatetime_fat_date_time.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdatetime/libfdatetime_filetime.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdatetime/libfdatetime_filetime.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdatetime/libfdatetime_floatingtime.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdatetime/libfdatetime_floatingtime.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdatetime/libfdatetime_hfs_time.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdatetime/libfdatetime_hfs_time.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdatetime/libfdatetime_libcerror.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdatetime/libfdatetime_nsf_timedate.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdatetime/libfdatetime_nsf_timedate.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdatetime/libfdatetime_posix_time.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdatetime/libfdatetime_posix_time.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdatetime/libfdatetime_support.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdatetime/libfdatetime_support.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdatetime/libfdatetime_systemtime.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdatetime/libfdatetime_systemtime.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdatetime/libfdatetime_types.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfdatetime/libfdatetime_unused.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfguid/Makefile.am +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfguid/libfguid_definitions.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfguid/libfguid_error.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfguid/libfguid_error.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfguid/libfguid_extern.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfguid/libfguid_identifier.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfguid/libfguid_identifier.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfguid/libfguid_libcerror.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfguid/libfguid_support.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfguid/libfguid_support.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfguid/libfguid_types.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfguid/libfguid_unused.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/Makefile.am +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_binary_data.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_binary_data.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_codepage.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_data_handle.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_data_handle.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_definitions.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_error.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_error.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_extern.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_filetime.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_filetime.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_floating_point.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_floating_point.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_integer.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_integer.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_libcdata.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_libcerror.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_libcnotify.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_libfdatetime.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_libfguid.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_libfwnt.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_libuna.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_split_utf16_string.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_split_utf16_string.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_split_utf8_string.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_split_utf8_string.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_string.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_string.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_support.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_support.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_table.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_table.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_types.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_unused.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_utf16_string.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_utf16_string.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_utf8_string.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_utf8_string.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_value.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_value.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_value_entry.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_value_entry.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_value_type.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfvalue/libfvalue_value_type.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/fwevt_template.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_channel.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_channel.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_debug.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_debug.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_error.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_error.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_event.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_event.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_extern.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_keyword.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_keyword.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_level.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_level.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_libcdata.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_libcerror.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_libcnotify.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_libfguid.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_libuna.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_manifest.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_manifest.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_map.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_map.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_notify.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_notify.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_opcode.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_opcode.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_provider.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_provider.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_support.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_support.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_task.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_task.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_template.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_template.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_template_item.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_template_item.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_types.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_unused.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_xml_document.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_xml_template_value.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_xml_template_value.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_xml_token.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwevt/libfwevt_xml_token.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/Makefile.am +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/libfwnt_access_control_entry.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/libfwnt_access_control_entry.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/libfwnt_access_control_list.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/libfwnt_access_control_list.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/libfwnt_bit_stream.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/libfwnt_bit_stream.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/libfwnt_debug.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/libfwnt_debug.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/libfwnt_definitions.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/libfwnt_error.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/libfwnt_error.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/libfwnt_extern.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/libfwnt_huffman_tree.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/libfwnt_huffman_tree.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/libfwnt_libcdata.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/libfwnt_libcerror.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/libfwnt_libcnotify.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/libfwnt_locale_identifier.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/libfwnt_locale_identifier.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/libfwnt_lznt1.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/libfwnt_lznt1.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/libfwnt_lzx.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/libfwnt_lzx.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/libfwnt_lzxpress.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/libfwnt_lzxpress.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/libfwnt_notify.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/libfwnt_notify.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/libfwnt_security_descriptor.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/libfwnt_security_descriptor.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/libfwnt_security_identifier.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/libfwnt_security_identifier.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/libfwnt_support.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/libfwnt_support.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/libfwnt_types.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libfwnt/libfwnt_unused.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/Makefile.am +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_checksum.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_checksum.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_codepage.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_data_block_key.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_data_block_key.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_data_block_stream.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_data_block_stream.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_data_type.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_data_type.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_debug.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_debug.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_definitions.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_dirty_vector.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_dirty_vector.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_error.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_error.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_extern.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_file.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_file.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_file_header.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_file_header.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_hive_bin.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_hive_bin.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_hive_bin_cell.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_hive_bin_cell.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_hive_bin_header.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_hive_bin_header.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_hive_bins_list.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_hive_bins_list.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_io_handle.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_io_handle.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_key.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_key.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_key_descriptor.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_key_descriptor.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_key_item.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_key_item.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_key_tree.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_key_tree.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_libbfio.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_libcdata.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_libcerror.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_libclocale.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_libcnotify.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_libcthreads.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_libfcache.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_libfdata.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_libfdatetime.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_libfwnt.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_libuna.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_multi_string.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_multi_string.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_named_key.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_named_key.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_notify.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_notify.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_security_key.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_security_key.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_sub_key_list.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_sub_key_list.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_support.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_support.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_types.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_unused.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_value.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_value.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_value_item.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_value_item.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_value_key.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/libregf_value_key.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/regf_cell_values.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/regf_file_header.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libregf/regf_hive_bin.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/Makefile.am +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_base16_stream.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_base16_stream.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_base32_stream.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_base32_stream.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_base64_stream.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_base64_stream.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_byte_stream.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_byte_stream.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_iso_8859_10.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_iso_8859_10.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_iso_8859_13.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_iso_8859_13.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_iso_8859_14.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_iso_8859_14.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_iso_8859_15.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_iso_8859_15.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_iso_8859_16.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_iso_8859_16.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_iso_8859_2.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_iso_8859_2.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_iso_8859_3.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_iso_8859_3.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_iso_8859_4.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_iso_8859_4.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_iso_8859_5.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_iso_8859_5.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_iso_8859_6.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_iso_8859_6.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_iso_8859_7.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_iso_8859_7.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_iso_8859_8.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_iso_8859_8.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_iso_8859_9.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_iso_8859_9.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_koi8_r.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_koi8_r.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_koi8_u.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_koi8_u.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_arabic.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_arabic.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_celtic.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_celtic.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_centraleurroman.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_centraleurroman.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_croatian.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_croatian.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_cyrillic.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_cyrillic.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_dingbats.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_dingbats.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_farsi.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_farsi.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_gaelic.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_gaelic.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_greek.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_greek.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_icelandic.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_icelandic.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_inuit.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_inuit.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_roman.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_roman.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_romanian.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_romanian.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_russian.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_russian.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_symbol.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_symbol.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_thai.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_thai.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_turkish.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_turkish.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_ukrainian.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_mac_ukrainian.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_windows_1250.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_windows_1250.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_windows_1251.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_windows_1251.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_windows_1252.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_windows_1252.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_windows_1253.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_windows_1253.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_windows_1254.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_windows_1254.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_windows_1255.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_windows_1255.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_windows_1256.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_windows_1256.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_windows_1257.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_windows_1257.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_windows_1258.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_windows_1258.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_windows_874.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_windows_874.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_windows_932.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_windows_932.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_windows_936.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_windows_936.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_windows_949.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_windows_949.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_windows_950.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_codepage_windows_950.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_definitions.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_error.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_error.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_extern.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_libcerror.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_scsu.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_scsu.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_support.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_support.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_types.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_unicode_character.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_unicode_character.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_unused.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_url_stream.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_url_stream.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_utf16_stream.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_utf16_stream.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_utf16_string.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_utf16_string.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_utf32_stream.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_utf32_stream.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_utf32_string.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_utf32_string.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_utf7_stream.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_utf7_stream.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_utf8_stream.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_utf8_stream.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_utf8_string.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libuna/libuna_utf8_string.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/Makefile.am +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_codepage.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_data_descriptor.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_data_descriptor.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_debug.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_debug.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_definitions.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_error.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_error.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_extern.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_io_handle.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_io_handle.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_language_entry.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_language_entry.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_language_table.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_language_table.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_libbfio.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_libcdata.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_libcerror.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_libclocale.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_libcnotify.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_libfcache.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_libfdata.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_libfguid.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_libfvalue.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_libfwnt.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_libuna.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_manifest_resource.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_manifest_resource.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_manifest_values.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_manifest_values.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_message_table_resource.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_message_table_resource.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_message_table_values.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_message_table_values.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_mui_resource.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_mui_resource.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_mui_values.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_mui_values.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_notify.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_notify.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_resource.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_resource.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_resource_item.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_resource_item.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_resource_node_entry.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_resource_node_entry.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_resource_node_header.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_resource_node_header.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_resource_node_tree.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_resource_node_tree.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_stream.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_stream.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_string_table_resource.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_string_table_resource.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_string_values.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_string_values.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_support.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_support.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_table_entry.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_table_entry.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_types.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_unused.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_version_information_resource.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_version_information_resource.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_version_values.c +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/libwrc_version_values.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/wrc_data_descriptor.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/wrc_message_table_resource.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/wrc_mui_resource.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/wrc_resource_node.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/libwrc/wrc_version_information_resource.h +0 -0
- {libevtx-20240427 → libevtx-20251118}/m4/gettext.m4 +0 -0
- {libevtx-20240427 → libevtx-20251118}/m4/host-cpu-c-abi.m4 +0 -0
- {libevtx-20240427 → libevtx-20251118}/m4/iconv.m4 +0 -0
- {libevtx-20240427 → libevtx-20251118}/m4/intlmacosx.m4 +0 -0
- {libevtx-20240427 → libevtx-20251118}/m4/lib-ld.m4 +0 -0
- {libevtx-20240427 → libevtx-20251118}/m4/lib-link.m4 +0 -0
- {libevtx-20240427 → libevtx-20251118}/m4/lib-prefix.m4 +0 -0
- {libevtx-20240427 → libevtx-20251118}/m4/nls.m4 +0 -0
- {libevtx-20240427 → libevtx-20251118}/m4/po.m4 +0 -0
- {libevtx-20240427 → libevtx-20251118}/m4/progtest.m4 +0 -0
- {libevtx-20240427 → libevtx-20251118}/m4/python.m4 +0 -0
- {libevtx-20240427 → libevtx-20251118}/m4/tests.m4 +0 -0
- {libevtx-20240427 → libevtx-20251118}/m4/types.m4 +0 -0
- {libevtx-20240427 → libevtx-20251118}/manuals/Makefile.am +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/Makefile.am +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/evtx_test_chunk/evtx_test_chunk.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/evtx_test_chunks_table/evtx_test_chunks_table.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/evtx_test_error/evtx_test_error.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/evtx_test_file/evtx_test_file.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/evtx_test_io_handle/evtx_test_io_handle.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/evtx_test_notify/evtx_test_notify.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/evtx_test_record/evtx_test_record.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/evtx_test_record_values/evtx_test_record_values.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/evtx_test_support/evtx_test_support.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/evtx_test_template_definition/evtx_test_template_definition.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/evtx_test_tools_info_handle/evtx_test_tools_info_handle.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/evtx_test_tools_message_handle/evtx_test_tools_message_handle.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/evtx_test_tools_message_string/evtx_test_tools_message_string.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/evtx_test_tools_output/evtx_test_tools_output.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/evtx_test_tools_path_handle/evtx_test_tools_path_handle.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/evtx_test_tools_registry_file/evtx_test_tools_registry_file.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/evtx_test_tools_resource_file/evtx_test_tools_resource_file.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/evtx_test_tools_signal/evtx_test_tools_signal.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/evtxexport/evtxexport.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/evtxinfo/evtxinfo.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/libbfio/libbfio.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/libcdata/libcdata.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/libcdirectory/libcdirectory.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/libcerror/libcerror.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/libcfile/libcfile.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/libclocale/libclocale.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/libcnotify/libcnotify.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/libcpath/libcpath.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/libcsplit/libcsplit.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/libcthreads/libcthreads.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/libevtx/libevtx.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/libevtx.sln +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/libexe/libexe.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/libfcache/libfcache.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/libfdata/libfdata.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/libfdatetime/libfdatetime.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/libfguid/libfguid.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/libfvalue/libfvalue.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/libfwevt/libfwevt.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/libfwnt/libfwnt.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/libregf/libregf.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/libuna/libuna.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/libwrc/libwrc.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/msvscpp/pyevtx/pyevtx.vcproj +0 -0
- {libevtx-20240427 → libevtx-20251118}/ossfuzz/Makefile.am +0 -0
- {libevtx-20240427 → libevtx-20251118}/po/ChangeLog +0 -0
- {libevtx-20240427 → libevtx-20251118}/po/Makefile.in.in +0 -0
- {libevtx-20240427 → libevtx-20251118}/po/Makevars +0 -0
- {libevtx-20240427 → libevtx-20251118}/po/Makevars.in +0 -0
- {libevtx-20240427 → libevtx-20251118}/po/POTFILES.in +0 -0
- {libevtx-20240427 → libevtx-20251118}/po/Rules-quot +0 -0
- {libevtx-20240427 → libevtx-20251118}/po/boldquot.sed +0 -0
- {libevtx-20240427 → libevtx-20251118}/po/en@boldquot.header +0 -0
- {libevtx-20240427 → libevtx-20251118}/po/en@quot.header +0 -0
- {libevtx-20240427 → libevtx-20251118}/po/insert-header.sin +0 -0
- {libevtx-20240427 → libevtx-20251118}/po/quot.sed +0 -0
- {libevtx-20240427 → libevtx-20251118}/po/remove-potcdate.sin +0 -0
- {libevtx-20240427 → libevtx-20251118}/pyevtx/Makefile.am +0 -0
- {libevtx-20240427 → libevtx-20251118}/pyproject.toml +0 -0
- {libevtx-20240427 → libevtx-20251118}/tests/Makefile.am +0 -0
- {libevtx-20240427 → libevtx-20251118}/tests/test_evtxexport.sh +0 -0
- {libevtx-20240427 → libevtx-20251118}/tests/test_evtxinfo.sh +0 -0
- {libevtx-20240427 → libevtx-20251118}/tests/test_library.sh +0 -0
- {libevtx-20240427 → libevtx-20251118}/tests/test_manpage.sh +0 -0
- {libevtx-20240427 → libevtx-20251118}/tests/test_python_module.sh +0 -0
- {libevtx-20240427 → libevtx-20251118}/tests/test_runner.sh +0 -0
- {libevtx-20240427 → libevtx-20251118}/tests/test_tools.sh +0 -0
libevtx-20251118/AUTHORS
ADDED
libevtx-20251118/INSTALL
ADDED
|
@@ -0,0 +1,380 @@
|
|
|
1
|
+
Installation Instructions
|
|
2
|
+
*************************
|
|
3
|
+
|
|
4
|
+
Basic Installation
|
|
5
|
+
==================
|
|
6
|
+
|
|
7
|
+
The following shell commands:
|
|
8
|
+
|
|
9
|
+
test -f configure || ./bootstrap
|
|
10
|
+
./configure
|
|
11
|
+
make
|
|
12
|
+
make install
|
|
13
|
+
|
|
14
|
+
should configure, build, and install this package. The first line,
|
|
15
|
+
which bootstraps, is intended for developers; when building from
|
|
16
|
+
distribution tarballs it does nothing and can be skipped. A package
|
|
17
|
+
might name the bootstrapping script differently; if the name is
|
|
18
|
+
‘autogen.sh’, for example, the first line should say ‘./autogen.sh’
|
|
19
|
+
instead of ‘./bootstrap’.
|
|
20
|
+
|
|
21
|
+
The following more-detailed instructions are generic; see the
|
|
22
|
+
‘README’ file for instructions specific to this package. Some packages
|
|
23
|
+
provide this ‘INSTALL’ file but do not implement all of the features
|
|
24
|
+
documented below. The lack of an optional feature in a given package is
|
|
25
|
+
not necessarily a bug. More recommendations for GNU packages can be
|
|
26
|
+
found in the GNU Coding Standards.
|
|
27
|
+
|
|
28
|
+
Many packages have scripts meant for developers instead of ordinary
|
|
29
|
+
builders, as they may use developer tools that are less commonly
|
|
30
|
+
installed, or they may access the network, which has privacy
|
|
31
|
+
implications. These scripts attempt to bootstrap by building the
|
|
32
|
+
‘configure’ script and related files, possibly using developer tools or
|
|
33
|
+
the network. Because the output of bootstrapping is system-independent,
|
|
34
|
+
it is normally run by a package developer so that its output can be put
|
|
35
|
+
into the distribution tarball and ordinary builders and users need not
|
|
36
|
+
bootstrap. Some packages have commands like ‘./autopull.sh’ and
|
|
37
|
+
‘./autogen.sh’ that you can run instead of ‘./bootstrap’, for more
|
|
38
|
+
fine-grained control over bootstrapping.
|
|
39
|
+
|
|
40
|
+
The ‘configure’ script attempts to guess correct values for various
|
|
41
|
+
system-dependent variables used during compilation. It uses those
|
|
42
|
+
values to create a ‘Makefile’ in each directory of the package. It may
|
|
43
|
+
also create one or more ‘.h’ files containing system-dependent
|
|
44
|
+
definitions. Finally, it creates a script ‘config.status’ that you can
|
|
45
|
+
run in the future to recreate the current configuration, and a file
|
|
46
|
+
‘config.log’ containing output useful for debugging ‘configure’.
|
|
47
|
+
|
|
48
|
+
It can also use an optional file (typically called ‘config.cache’ and
|
|
49
|
+
enabled with ‘--cache-file=config.cache’ or simply ‘-C’) that saves the
|
|
50
|
+
results of its tests to speed up reconfiguring. Caching is disabled by
|
|
51
|
+
default to prevent problems with accidental use of stale cache files.
|
|
52
|
+
|
|
53
|
+
If you need to do unusual things to compile the package, please try
|
|
54
|
+
to figure out how ‘configure’ could check whether to do them, and mail
|
|
55
|
+
diffs or instructions to the address given in the ‘README’ so they can
|
|
56
|
+
be considered for the next release. If you are using the cache, and at
|
|
57
|
+
some point ‘config.cache’ contains results you don’t want to keep, you
|
|
58
|
+
may remove or edit it.
|
|
59
|
+
|
|
60
|
+
The ‘autoconf’ program generates ‘configure’ from the file
|
|
61
|
+
‘configure.ac’. Normally you should edit ‘configure.ac’ instead of
|
|
62
|
+
editing ‘configure’ directly.
|
|
63
|
+
|
|
64
|
+
The simplest way to compile this package is:
|
|
65
|
+
|
|
66
|
+
1. ‘cd’ to the directory containing the package’s source code.
|
|
67
|
+
|
|
68
|
+
2. If this is a developer checkout and file ‘configure’ does not yet
|
|
69
|
+
exist, run the bootstrapping script (typically ‘./bootstrap’ or
|
|
70
|
+
‘./autogen.sh’) to bootstrap and create the file. You may need
|
|
71
|
+
special developer tools and network access to bootstrap, and the
|
|
72
|
+
network access may have privacy implications.
|
|
73
|
+
|
|
74
|
+
3. Type ‘./configure’ to configure the package for your system. This
|
|
75
|
+
might take a while. While running, ‘configure’ prints messages
|
|
76
|
+
telling which features it is checking for.
|
|
77
|
+
|
|
78
|
+
4. Type ‘make’ to compile the package.
|
|
79
|
+
|
|
80
|
+
5. Optionally, type ‘make check’ to run any self-tests that come with
|
|
81
|
+
the package, generally using the just-built uninstalled binaries.
|
|
82
|
+
|
|
83
|
+
6. Type ‘make install’ to install the programs and any data files and
|
|
84
|
+
documentation. When installing into a prefix owned by root, it is
|
|
85
|
+
recommended that the package be configured and built as a regular
|
|
86
|
+
user, and only the ‘make install’ phase executed with root
|
|
87
|
+
privileges.
|
|
88
|
+
|
|
89
|
+
7. Optionally, type ‘make installcheck’ to repeat any self-tests, but
|
|
90
|
+
this time using the binaries in their final installed location.
|
|
91
|
+
This target does not install anything. Running this target as a
|
|
92
|
+
regular user, particularly if the prior ‘make install’ required
|
|
93
|
+
root privileges, verifies that the installation completed
|
|
94
|
+
correctly.
|
|
95
|
+
|
|
96
|
+
8. You can remove the program binaries and object files from the
|
|
97
|
+
source code directory by typing ‘make clean’. To also remove the
|
|
98
|
+
files that ‘configure’ created (so you can compile the package for
|
|
99
|
+
a different kind of computer), type ‘make distclean’. There is
|
|
100
|
+
also a ‘make maintainer-clean’ target, but that is intended mainly
|
|
101
|
+
for the package’s developers. If you use it, you may have to
|
|
102
|
+
bootstrap again.
|
|
103
|
+
|
|
104
|
+
9. If the package follows the GNU Coding Standards, you can type ‘make
|
|
105
|
+
uninstall’ to remove the installed files.
|
|
106
|
+
|
|
107
|
+
Installation Prerequisites
|
|
108
|
+
==========================
|
|
109
|
+
|
|
110
|
+
Installation requires a POSIX-like environment with a shell and at
|
|
111
|
+
least the following standard utilities:
|
|
112
|
+
|
|
113
|
+
awk cat cp diff echo expr false ls mkdir mv printf pwd rm rmdir sed
|
|
114
|
+
sort test tr
|
|
115
|
+
|
|
116
|
+
This package’s installation may need other standard utilities such as
|
|
117
|
+
‘grep’, ‘make’, ‘sleep’ and ‘touch’, along with compilers like ‘gcc’.
|
|
118
|
+
|
|
119
|
+
Compilers and Options
|
|
120
|
+
=====================
|
|
121
|
+
|
|
122
|
+
Some systems require unusual options for compilation or linking that
|
|
123
|
+
the ‘configure’ script does not know about. Run ‘./configure --help’
|
|
124
|
+
for details on some of the pertinent environment variables.
|
|
125
|
+
|
|
126
|
+
You can give ‘configure’ initial values for configuration parameters
|
|
127
|
+
by setting variables in the command line or in the environment. Here is
|
|
128
|
+
an example:
|
|
129
|
+
|
|
130
|
+
./configure CC=gcc CFLAGS=-g LIBS=-lposix
|
|
131
|
+
|
|
132
|
+
See “Defining Variables” for more details.
|
|
133
|
+
|
|
134
|
+
Compiling For Multiple Architectures
|
|
135
|
+
====================================
|
|
136
|
+
|
|
137
|
+
You can compile the package for more than one kind of computer at the
|
|
138
|
+
same time, by placing the object files for each system in their own
|
|
139
|
+
directory. To do this, you can use GNU ‘make’. ‘cd’ to the directory
|
|
140
|
+
where you want the object files and executables to go and run the
|
|
141
|
+
‘configure’ script. ‘configure’ automatically checks for the source
|
|
142
|
+
code in the directory that ‘configure’ is in and in ‘..’. This is known
|
|
143
|
+
as a “VPATH” build.
|
|
144
|
+
|
|
145
|
+
With a non-GNU ‘make’, it is safer to compile the package for one
|
|
146
|
+
system at a time in the source code directory. After you have installed
|
|
147
|
+
the package for one system, use ‘make distclean’ before reconfiguring
|
|
148
|
+
for another system.
|
|
149
|
+
|
|
150
|
+
Some platforms, notably macOS, support “fat” or “universal” binaries,
|
|
151
|
+
where a single binary can execute on different architectures. On these
|
|
152
|
+
platforms you can configure and compile just once, with options specific
|
|
153
|
+
to that platform.
|
|
154
|
+
|
|
155
|
+
Installation Names
|
|
156
|
+
==================
|
|
157
|
+
|
|
158
|
+
By default, ‘make install’ installs the package’s commands under
|
|
159
|
+
‘/usr/local/bin’, include files under ‘/usr/local/include’, etc. You
|
|
160
|
+
can specify an installation prefix other than ‘/usr/local’ by giving
|
|
161
|
+
‘configure’ the option ‘--prefix=PREFIX’, where PREFIX must be an
|
|
162
|
+
absolute file name.
|
|
163
|
+
|
|
164
|
+
You can specify separate installation prefixes for
|
|
165
|
+
architecture-specific files and architecture-independent files. If you
|
|
166
|
+
pass the option ‘--exec-prefix=PREFIX’ to ‘configure’, the package uses
|
|
167
|
+
PREFIX as the prefix for installing programs and libraries.
|
|
168
|
+
Documentation and other data files still use the regular prefix.
|
|
169
|
+
|
|
170
|
+
In addition, if you use an unusual directory layout you can give
|
|
171
|
+
options like ‘--bindir=DIR’ to specify different values for particular
|
|
172
|
+
kinds of files. Run ‘configure --help’ for a list of the directories
|
|
173
|
+
you can set and what kinds of files go in them. In general, the default
|
|
174
|
+
for these options is expressed in terms of ‘${prefix}’, so that
|
|
175
|
+
specifying just ‘--prefix’ will affect all of the other directory
|
|
176
|
+
specifications that were not explicitly provided.
|
|
177
|
+
|
|
178
|
+
The most portable way to affect installation locations is to pass the
|
|
179
|
+
correct locations to ‘configure’; however, many packages provide one or
|
|
180
|
+
both of the following shortcuts of passing variable assignments to the
|
|
181
|
+
‘make install’ command line to change installation locations without
|
|
182
|
+
having to reconfigure or recompile.
|
|
183
|
+
|
|
184
|
+
The first method involves providing an override variable for each
|
|
185
|
+
affected directory. For example, ‘make install
|
|
186
|
+
prefix=/alternate/directory’ will choose an alternate location for all
|
|
187
|
+
directory configuration variables that were expressed in terms of
|
|
188
|
+
‘${prefix}’. Any directories that were specified during ‘configure’,
|
|
189
|
+
but not in terms of ‘${prefix}’, must each be overridden at install time
|
|
190
|
+
for the entire installation to be relocated. The approach of makefile
|
|
191
|
+
variable overrides for each directory variable is required by the GNU
|
|
192
|
+
Coding Standards, and ideally causes no recompilation. However, some
|
|
193
|
+
platforms have known limitations with the semantics of shared libraries
|
|
194
|
+
that end up requiring recompilation when using this method, particularly
|
|
195
|
+
noticeable in packages that use GNU Libtool.
|
|
196
|
+
|
|
197
|
+
The second method involves providing the ‘DESTDIR’ variable. For
|
|
198
|
+
example, ‘make install DESTDIR=/alternate/directory’ will prepend
|
|
199
|
+
‘/alternate/directory’ before all installation names. The approach of
|
|
200
|
+
‘DESTDIR’ overrides is not required by the GNU Coding Standards, and
|
|
201
|
+
does not work on platforms that have drive letters. On the other hand,
|
|
202
|
+
it does better at avoiding recompilation issues, and works well even
|
|
203
|
+
when some directory options were not specified in terms of ‘${prefix}’
|
|
204
|
+
at ‘configure’ time.
|
|
205
|
+
|
|
206
|
+
Optional Features
|
|
207
|
+
=================
|
|
208
|
+
|
|
209
|
+
If the package supports it, you can cause programs to be installed
|
|
210
|
+
with an extra prefix or suffix on their names by giving ‘configure’ the
|
|
211
|
+
option ‘--program-prefix=PREFIX’ or ‘--program-suffix=SUFFIX’.
|
|
212
|
+
|
|
213
|
+
Some packages pay attention to ‘--enable-FEATURE’ and
|
|
214
|
+
‘--disable-FEATURE’ options to ‘configure’, where FEATURE indicates an
|
|
215
|
+
optional part of the package. They may also pay attention to
|
|
216
|
+
‘--with-PACKAGE’ and ‘--without-PACKAGE’ options, where PACKAGE is
|
|
217
|
+
something like ‘gnu-ld’. ‘./configure --help’ should mention the
|
|
218
|
+
‘--enable-...’ and ‘--with-...’ options that the package recognizes.
|
|
219
|
+
|
|
220
|
+
Some packages offer the ability to configure how verbose the
|
|
221
|
+
execution of ‘make’ will be. For these packages, running ‘./configure
|
|
222
|
+
--enable-silent-rules’ sets the default to minimal output, which can be
|
|
223
|
+
overridden with ‘make V=1’; while running ‘./configure
|
|
224
|
+
--disable-silent-rules’ sets the default to verbose, which can be
|
|
225
|
+
overridden with ‘make V=0’.
|
|
226
|
+
|
|
227
|
+
Specifying a System Type
|
|
228
|
+
========================
|
|
229
|
+
|
|
230
|
+
By default ‘configure’ builds for the current system. To create
|
|
231
|
+
binaries that can run on a different system type, specify a
|
|
232
|
+
‘--host=TYPE’ option along with compiler variables that specify how to
|
|
233
|
+
generate object code for TYPE. For example, to create binaries intended
|
|
234
|
+
to run on a 64-bit ARM processor:
|
|
235
|
+
|
|
236
|
+
./configure --host=aarch64-linux-gnu \
|
|
237
|
+
CC=aarch64-linux-gnu-gcc \
|
|
238
|
+
CXX=aarch64-linux-gnu-g++
|
|
239
|
+
|
|
240
|
+
If done on a machine that can execute these binaries (e.g., via
|
|
241
|
+
‘qemu-aarch64’, ‘$QEMU_LD_PREFIX’, and Linux’s ‘binfmt_misc’
|
|
242
|
+
capability), the build behaves like a native build. Otherwise it is a
|
|
243
|
+
cross-build: ‘configure’ will make cross-compilation guesses instead of
|
|
244
|
+
running test programs, and ‘make check’ will not work.
|
|
245
|
+
|
|
246
|
+
A system type can either be a short name like ‘mingw64’, or a
|
|
247
|
+
canonical name like ‘x86_64-pc-linux-gnu’. Canonical names have the
|
|
248
|
+
form CPU-COMPANY-SYSTEM where SYSTEM is either OS or KERNEL-OS. To
|
|
249
|
+
canonicalize and validate a system type, you can run the command
|
|
250
|
+
‘config.sub’, which is often squirreled away in a subdirectory like
|
|
251
|
+
‘build-aux’. For example:
|
|
252
|
+
|
|
253
|
+
$ build-aux/config.sub arm64-linux
|
|
254
|
+
aarch64-unknown-linux-gnu
|
|
255
|
+
$ build-aux/config.sub riscv-lnx
|
|
256
|
+
Invalid configuration 'riscv-lnx': OS 'lnx' not recognized
|
|
257
|
+
|
|
258
|
+
You can look at the ‘config.sub’ file to see which types are recognized.
|
|
259
|
+
If the file is absent, this package does not need the system type.
|
|
260
|
+
|
|
261
|
+
If ‘configure’ fails with the diagnostic “cannot guess build type”.
|
|
262
|
+
‘config.sub’ did not recognize your system’s type. In this case, first
|
|
263
|
+
fetch the newest versions of these files from the GNU config package
|
|
264
|
+
(https://savannah.gnu.org/projects/config). If that fixes things,
|
|
265
|
+
please report it to the maintainers of the package containing
|
|
266
|
+
‘configure’. Otherwise, you can try the configure option ‘--build=TYPE’
|
|
267
|
+
where TYPE comes close to your system type; also, please report the
|
|
268
|
+
problem to <config-patches@gnu.org>.
|
|
269
|
+
|
|
270
|
+
For more details about configuring system types, see the Autoconf
|
|
271
|
+
documentation.
|
|
272
|
+
|
|
273
|
+
Sharing Defaults
|
|
274
|
+
================
|
|
275
|
+
|
|
276
|
+
If you want to set default values for ‘configure’ scripts to share,
|
|
277
|
+
you can create a site shell script called ‘config.site’ that gives
|
|
278
|
+
default values for variables like ‘CC’, ‘cache_file’, and ‘prefix’.
|
|
279
|
+
‘configure’ looks for ‘PREFIX/share/config.site’ if it exists, then
|
|
280
|
+
‘PREFIX/etc/config.site’ if it exists. Or, you can set the
|
|
281
|
+
‘CONFIG_SITE’ environment variable to the location of the site script.
|
|
282
|
+
A warning: not all ‘configure’ scripts look for a site script.
|
|
283
|
+
|
|
284
|
+
Defining Variables
|
|
285
|
+
==================
|
|
286
|
+
|
|
287
|
+
Variables not defined in a site shell script can be set in the
|
|
288
|
+
environment passed to ‘configure’. However, some packages may run
|
|
289
|
+
configure again during the build, and the customized values of these
|
|
290
|
+
variables may be lost. In order to avoid this problem, you should set
|
|
291
|
+
them in the ‘configure’ command line, using ‘VAR=value’. For example:
|
|
292
|
+
|
|
293
|
+
./configure CC=/usr/local2/bin/gcc
|
|
294
|
+
|
|
295
|
+
causes the specified ‘gcc’ to be used as the C compiler (unless it is
|
|
296
|
+
overridden in the site shell script).
|
|
297
|
+
|
|
298
|
+
Unfortunately, this technique does not work for ‘CONFIG_SHELL’ due to an
|
|
299
|
+
Autoconf limitation. Until the limitation is lifted, you can use this
|
|
300
|
+
workaround:
|
|
301
|
+
|
|
302
|
+
CONFIG_SHELL=/bin/bash ./configure CONFIG_SHELL=/bin/bash
|
|
303
|
+
|
|
304
|
+
‘configure’ Invocation
|
|
305
|
+
======================
|
|
306
|
+
|
|
307
|
+
‘configure’ recognizes the following options to control how it
|
|
308
|
+
operates.
|
|
309
|
+
|
|
310
|
+
‘--help’
|
|
311
|
+
‘-h’
|
|
312
|
+
Print a summary of all of the options to ‘configure’, and exit.
|
|
313
|
+
|
|
314
|
+
‘--help=short’
|
|
315
|
+
‘--help=recursive’
|
|
316
|
+
Print a summary of the options unique to this package’s
|
|
317
|
+
‘configure’, and exit. The ‘short’ variant lists options used only
|
|
318
|
+
in the top level, while the ‘recursive’ variant lists options also
|
|
319
|
+
present in any nested packages.
|
|
320
|
+
|
|
321
|
+
‘--version’
|
|
322
|
+
‘-V’
|
|
323
|
+
Print the version of Autoconf used to generate the ‘configure’
|
|
324
|
+
script, and exit.
|
|
325
|
+
|
|
326
|
+
‘--cache-file=FILE’
|
|
327
|
+
Enable the cache: use and save the results of the tests in FILE,
|
|
328
|
+
traditionally ‘config.cache’. FILE defaults to ‘/dev/null’ to
|
|
329
|
+
disable caching.
|
|
330
|
+
|
|
331
|
+
‘--config-cache’
|
|
332
|
+
‘-C’
|
|
333
|
+
Alias for ‘--cache-file=config.cache’.
|
|
334
|
+
|
|
335
|
+
‘--srcdir=DIR’
|
|
336
|
+
Look for the package’s source code in directory DIR. Usually
|
|
337
|
+
‘configure’ can determine that directory automatically.
|
|
338
|
+
|
|
339
|
+
‘--prefix=DIR’
|
|
340
|
+
Use DIR as the installation prefix. See “Installation Names” for
|
|
341
|
+
more details, including other options available for fine-tuning the
|
|
342
|
+
installation locations.
|
|
343
|
+
|
|
344
|
+
‘--host=TYPE’
|
|
345
|
+
Build binaries for system TYPE. See “Specifying a System Type”.
|
|
346
|
+
|
|
347
|
+
‘--enable-FEATURE’
|
|
348
|
+
‘--disable-FEATURE’
|
|
349
|
+
Enable or disable the optional FEATURE. See “Optional Features”.
|
|
350
|
+
|
|
351
|
+
‘--with-PACKAGE’
|
|
352
|
+
‘--without-PACKAGE’
|
|
353
|
+
Use or omit PACKAGE when building. See “Optional Features”.
|
|
354
|
+
|
|
355
|
+
‘--quiet’
|
|
356
|
+
‘--silent’
|
|
357
|
+
‘-q’
|
|
358
|
+
Do not print messages saying which checks are being made. To
|
|
359
|
+
suppress all normal output, redirect it to ‘/dev/null’ (any error
|
|
360
|
+
messages will still be shown).
|
|
361
|
+
|
|
362
|
+
‘--no-create’
|
|
363
|
+
‘-n’
|
|
364
|
+
Run the configure checks, but stop before creating any output
|
|
365
|
+
files.
|
|
366
|
+
|
|
367
|
+
‘configure’ also recognizes several environment variables, and accepts
|
|
368
|
+
some other, less widely useful, options. Run ‘configure --help’ for
|
|
369
|
+
more details.
|
|
370
|
+
|
|
371
|
+
Copyright notice
|
|
372
|
+
================
|
|
373
|
+
|
|
374
|
+
Copyright © 1994–1996, 1999–2002, 2004–2017, 2020–2025 Free Software
|
|
375
|
+
Foundation, Inc.
|
|
376
|
+
|
|
377
|
+
Copying and distribution of this file, with or without modification,
|
|
378
|
+
are permitted in any medium without royalty provided the copyright
|
|
379
|
+
notice and this notice are preserved. This file is offered as-is,
|
|
380
|
+
without warranty of any kind.
|