libfwevt-python 20240504__tar.gz → 20260522__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.
- libfwevt_python-20260522/AUTHORS +4 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/INSTALL +0 -0
- libfwevt_python-20260522/Makefile.am +89 -0
- libfwevt_python-20260522/Makefile.in +1124 -0
- libfwevt_python-20260522/PKG-INFO +29 -0
- libfwevt_python-20260522/README +12 -0
- libfwevt_python-20260522/_build.py +275 -0
- libfwevt_python-20260522/acinclude.m4 +35 -0
- libfwevt_python-20260522/common/byte_stream.h +257 -0
- libfwevt_python-20260522/common/common.h +43 -0
- libfwevt_python-20260522/common/config.h +428 -0
- libfwevt_python-20260522/common/config_borlandc.h +26 -0
- libfwevt_python-20260522/common/config_msc.h +34 -0
- libfwevt_python-20260522/common/config_winapi.h +95 -0
- libfwevt_python-20260522/common/file_stream.h +151 -0
- libfwevt_python-20260522/common/memory.h +129 -0
- libfwevt_python-20260522/common/narrow_string.h +187 -0
- libfwevt_python-20260522/common/system_string.h +154 -0
- libfwevt_python-20260522/common/types.h +392 -0
- libfwevt_python-20260522/common/types.h.in +392 -0
- libfwevt_python-20260522/common/wide_string.h +175 -0
- libfwevt_python-20260522/config.guess +1754 -0
- libfwevt_python-20260522/config.sub +1890 -0
- libfwevt_python-20260522/configure +47843 -0
- libfwevt_python-20260522/configure.ac +190 -0
- libfwevt_python-20260522/dpkg/changelog +5 -0
- libfwevt_python-20260522/dpkg/copyright +25 -0
- libfwevt_python-20260522/include/libfwevt/definitions.h +153 -0
- libfwevt_python-20260522/include/libfwevt/definitions.h.in +153 -0
- libfwevt_python-20260522/include/libfwevt/error.h +291 -0
- libfwevt_python-20260522/include/libfwevt/extern.h +47 -0
- libfwevt_python-20260522/include/libfwevt/features.h +38 -0
- libfwevt_python-20260522/include/libfwevt/features.h.in +38 -0
- libfwevt_python-20260522/include/libfwevt/types.h +225 -0
- libfwevt_python-20260522/include/libfwevt/types.h.in +225 -0
- libfwevt_python-20260522/include/libfwevt.h +1205 -0
- libfwevt_python-20260522/include/libfwevt.h.in +1205 -0
- libfwevt_python-20260522/libcdata/libcdata_array.c +2015 -0
- libfwevt_python-20260522/libcdata/libcdata_array.h +200 -0
- libfwevt_python-20260522/libcdata/libcdata_btree.c +964 -0
- libfwevt_python-20260522/libcdata/libcdata_btree.h +141 -0
- libfwevt_python-20260522/libcdata/libcdata_btree_node.c +1607 -0
- libfwevt_python-20260522/libcdata/libcdata_btree_node.h +101 -0
- libfwevt_python-20260522/libcdata/libcdata_btree_values_list.c +217 -0
- libfwevt_python-20260522/libcdata/libcdata_btree_values_list.h +55 -0
- libfwevt_python-20260522/libcdata/libcdata_definitions.h +81 -0
- libfwevt_python-20260522/libcdata/libcdata_error.c +111 -0
- libfwevt_python-20260522/libcdata/libcdata_error.h +74 -0
- libfwevt_python-20260522/libcdata/libcdata_extern.h +40 -0
- libfwevt_python-20260522/libcdata/libcdata_libcerror.h +50 -0
- libfwevt_python-20260522/libcdata/libcdata_libcthreads.h +64 -0
- libfwevt_python-20260522/libcdata/libcdata_list.c +2906 -0
- libfwevt_python-20260522/libcdata/libcdata_list.h +235 -0
- libfwevt_python-20260522/libcdata/libcdata_list_element.c +926 -0
- libfwevt_python-20260522/libcdata/libcdata_list_element.h +142 -0
- libfwevt_python-20260522/libcdata/libcdata_range_list.c +4922 -0
- libfwevt_python-20260522/libcdata/libcdata_range_list.h +382 -0
- libfwevt_python-20260522/libcdata/libcdata_range_list_value.c +429 -0
- libfwevt_python-20260522/libcdata/libcdata_range_list_value.h +100 -0
- libfwevt_python-20260522/libcdata/libcdata_support.c +39 -0
- libfwevt_python-20260522/libcdata/libcdata_support.h +47 -0
- libfwevt_python-20260522/libcdata/libcdata_tree_node.c +4216 -0
- libfwevt_python-20260522/libcdata/libcdata_tree_node.h +301 -0
- libfwevt_python-20260522/libcdata/libcdata_types.h +57 -0
- libfwevt_python-20260522/libcdata/libcdata_unused.h +44 -0
- libfwevt_python-20260522/libcerror/libcerror_definitions.h +326 -0
- libfwevt_python-20260522/libcerror/libcerror_error.c +827 -0
- libfwevt_python-20260522/libcerror/libcerror_error.h +125 -0
- libfwevt_python-20260522/libcerror/libcerror_extern.h +46 -0
- libfwevt_python-20260522/libcerror/libcerror_support.c +39 -0
- libfwevt_python-20260522/libcerror/libcerror_support.h +47 -0
- libfwevt_python-20260522/libcerror/libcerror_system.c +587 -0
- libfwevt_python-20260522/libcerror/libcerror_system.h +78 -0
- libfwevt_python-20260522/libcerror/libcerror_types.h +51 -0
- libfwevt_python-20260522/libcerror/libcerror_unused.h +44 -0
- libfwevt_python-20260522/libcnotify/libcnotify_definitions.h +54 -0
- libfwevt_python-20260522/libcnotify/libcnotify_extern.h +40 -0
- libfwevt_python-20260522/libcnotify/libcnotify_libcerror.h +50 -0
- libfwevt_python-20260522/libcnotify/libcnotify_print.c +400 -0
- libfwevt_python-20260522/libcnotify/libcnotify_print.h +68 -0
- libfwevt_python-20260522/libcnotify/libcnotify_stream.c +182 -0
- libfwevt_python-20260522/libcnotify/libcnotify_stream.h +56 -0
- libfwevt_python-20260522/libcnotify/libcnotify_support.c +39 -0
- libfwevt_python-20260522/libcnotify/libcnotify_support.h +49 -0
- libfwevt_python-20260522/libcnotify/libcnotify_unused.h +44 -0
- libfwevt_python-20260522/libcnotify/libcnotify_verbose.c +38 -0
- libfwevt_python-20260522/libcnotify/libcnotify_verbose.h +50 -0
- libfwevt_python-20260522/libcthreads/libcthreads_condition.c +735 -0
- libfwevt_python-20260522/libcthreads/libcthreads_condition.h +120 -0
- libfwevt_python-20260522/libcthreads/libcthreads_definitions.h +84 -0
- libfwevt_python-20260522/libcthreads/libcthreads_error.c +111 -0
- libfwevt_python-20260522/libcthreads/libcthreads_error.h +74 -0
- libfwevt_python-20260522/libcthreads/libcthreads_extern.h +46 -0
- libfwevt_python-20260522/libcthreads/libcthreads_libcerror.h +50 -0
- libfwevt_python-20260522/libcthreads/libcthreads_lock.c +391 -0
- libfwevt_python-20260522/libcthreads/libcthreads_lock.h +88 -0
- libfwevt_python-20260522/libcthreads/libcthreads_mutex.c +601 -0
- libfwevt_python-20260522/libcthreads/libcthreads_mutex.h +98 -0
- libfwevt_python-20260522/libcthreads/libcthreads_queue.c +1150 -0
- libfwevt_python-20260522/libcthreads/libcthreads_queue.h +136 -0
- libfwevt_python-20260522/libcthreads/libcthreads_read_write_lock.c +690 -0
- libfwevt_python-20260522/libcthreads/libcthreads_read_write_lock.h +119 -0
- libfwevt_python-20260522/libcthreads/libcthreads_repeating_thread.c +644 -0
- libfwevt_python-20260522/libcthreads/libcthreads_repeating_thread.h +115 -0
- libfwevt_python-20260522/libcthreads/libcthreads_support.c +39 -0
- libfwevt_python-20260522/libcthreads/libcthreads_support.h +47 -0
- libfwevt_python-20260522/libcthreads/libcthreads_thread.c +405 -0
- libfwevt_python-20260522/libcthreads/libcthreads_thread.h +95 -0
- libfwevt_python-20260522/libcthreads/libcthreads_thread_attributes.c +149 -0
- libfwevt_python-20260522/libcthreads/libcthreads_thread_attributes.h +78 -0
- libfwevt_python-20260522/libcthreads/libcthreads_thread_pool.c +1721 -0
- libfwevt_python-20260522/libcthreads/libcthreads_thread_pool.h +177 -0
- libfwevt_python-20260522/libcthreads/libcthreads_types.h +63 -0
- libfwevt_python-20260522/libcthreads/libcthreads_unused.h +44 -0
- libfwevt_python-20260522/libfdatetime/libfdatetime_date_time_values.c +1906 -0
- libfwevt_python-20260522/libfdatetime/libfdatetime_date_time_values.h +121 -0
- libfwevt_python-20260522/libfdatetime/libfdatetime_definitions.h +121 -0
- libfwevt_python-20260522/libfdatetime/libfdatetime_error.c +111 -0
- libfwevt_python-20260522/libfdatetime/libfdatetime_error.h +74 -0
- libfwevt_python-20260522/libfdatetime/libfdatetime_extern.h +40 -0
- libfwevt_python-20260522/libfdatetime/libfdatetime_fat_date_time.c +1258 -0
- libfwevt_python-20260522/libfdatetime/libfdatetime_fat_date_time.h +172 -0
- libfwevt_python-20260522/libfdatetime/libfdatetime_filetime.c +1465 -0
- libfwevt_python-20260522/libfdatetime/libfdatetime_filetime.h +177 -0
- libfwevt_python-20260522/libfdatetime/libfdatetime_floatingtime.c +1333 -0
- libfwevt_python-20260522/libfdatetime/libfdatetime_floatingtime.h +168 -0
- libfwevt_python-20260522/libfdatetime/libfdatetime_hfs_time.c +1329 -0
- libfwevt_python-20260522/libfdatetime/libfdatetime_hfs_time.h +166 -0
- libfwevt_python-20260522/libfdatetime/libfdatetime_libcerror.h +50 -0
- libfwevt_python-20260522/libfdatetime/libfdatetime_nsf_timedate.c +1373 -0
- libfwevt_python-20260522/libfdatetime/libfdatetime_nsf_timedate.h +177 -0
- libfwevt_python-20260522/libfdatetime/libfdatetime_posix_time.c +1918 -0
- libfwevt_python-20260522/libfdatetime/libfdatetime_posix_time.h +189 -0
- libfwevt_python-20260522/libfdatetime/libfdatetime_support.c +41 -0
- libfwevt_python-20260522/libfdatetime/libfdatetime_support.h +47 -0
- libfwevt_python-20260522/libfdatetime/libfdatetime_systemtime.c +1779 -0
- libfwevt_python-20260522/libfdatetime/libfdatetime_systemtime.h +180 -0
- libfwevt_python-20260522/libfdatetime/libfdatetime_types.h +63 -0
- libfwevt_python-20260522/libfdatetime/libfdatetime_unused.h +44 -0
- libfwevt_python-20260522/libfguid/libfguid_definitions.h +84 -0
- libfwevt_python-20260522/libfguid/libfguid_error.c +111 -0
- libfwevt_python-20260522/libfguid/libfguid_error.h +74 -0
- libfwevt_python-20260522/libfguid/libfguid_extern.h +40 -0
- libfwevt_python-20260522/libfguid/libfguid_identifier.c +2524 -0
- libfwevt_python-20260522/libfguid/libfguid_identifier.h +204 -0
- libfwevt_python-20260522/libfguid/libfguid_libcerror.h +50 -0
- libfwevt_python-20260522/libfguid/libfguid_support.c +41 -0
- libfwevt_python-20260522/libfguid/libfguid_support.h +47 -0
- libfwevt_python-20260522/libfguid/libfguid_types.h +47 -0
- libfwevt_python-20260522/libfguid/libfguid_unused.h +44 -0
- libfwevt_python-20260522/libfwevt/fwevt_template.h +557 -0
- libfwevt_python-20260522/libfwevt/libfwevt.c +80 -0
- libfwevt_python-20260522/libfwevt/libfwevt.rc +38 -0
- libfwevt_python-20260522/libfwevt/libfwevt.rc.in +38 -0
- libfwevt_python-20260522/libfwevt/libfwevt_channel.c +698 -0
- libfwevt_python-20260522/libfwevt/libfwevt_channel.h +110 -0
- libfwevt_python-20260522/libfwevt/libfwevt_data_segment.c +274 -0
- libfwevt_python-20260522/libfwevt/libfwevt_data_segment.h +94 -0
- libfwevt_python-20260522/libfwevt/libfwevt_date_time.c +468 -0
- libfwevt_python-20260522/libfwevt/libfwevt_date_time.h +45 -0
- libfwevt_python-20260522/libfwevt/libfwevt_debug.c +689 -0
- libfwevt_python-20260522/libfwevt/libfwevt_debug.h +70 -0
- libfwevt_python-20260522/libfwevt/libfwevt_definitions.h +168 -0
- libfwevt_python-20260522/libfwevt/libfwevt_definitions.h.in +168 -0
- libfwevt_python-20260522/libfwevt/libfwevt_error.c +111 -0
- libfwevt_python-20260522/libfwevt/libfwevt_error.h +74 -0
- libfwevt_python-20260522/libfwevt/libfwevt_event.c +545 -0
- libfwevt_python-20260522/libfwevt/libfwevt_event.h +122 -0
- libfwevt_python-20260522/libfwevt/libfwevt_extern.h +40 -0
- libfwevt_python-20260522/libfwevt/libfwevt_floating_point.c +1296 -0
- libfwevt_python-20260522/libfwevt/libfwevt_floating_point.h +77 -0
- libfwevt_python-20260522/libfwevt/libfwevt_integer.c +866 -0
- libfwevt_python-20260522/libfwevt/libfwevt_integer.h +102 -0
- libfwevt_python-20260522/libfwevt/libfwevt_keyword.c +378 -0
- libfwevt_python-20260522/libfwevt/libfwevt_keyword.h +70 -0
- libfwevt_python-20260522/libfwevt/libfwevt_level.c +377 -0
- libfwevt_python-20260522/libfwevt/libfwevt_level.h +70 -0
- libfwevt_python-20260522/libfwevt/libfwevt_libcdata.h +54 -0
- libfwevt_python-20260522/libfwevt/libfwevt_libcerror.h +50 -0
- libfwevt_python-20260522/libfwevt/libfwevt_libcnotify.h +50 -0
- libfwevt_python-20260522/libfwevt/libfwevt_libfdatetime.h +56 -0
- libfwevt_python-20260522/libfwevt/libfwevt_libfguid.h +49 -0
- libfwevt_python-20260522/libfwevt/libfwevt_libfwnt.h +58 -0
- libfwevt_python-20260522/libfwevt/libfwevt_libuna.h +60 -0
- libfwevt_python-20260522/libfwevt/libfwevt_manifest.c +839 -0
- libfwevt_python-20260522/libfwevt/libfwevt_manifest.h +97 -0
- libfwevt_python-20260522/libfwevt/libfwevt_map.c +275 -0
- libfwevt_python-20260522/libfwevt/libfwevt_map.h +70 -0
- libfwevt_python-20260522/libfwevt/libfwevt_notify.c +120 -0
- libfwevt_python-20260522/libfwevt/libfwevt_notify.h +63 -0
- libfwevt_python-20260522/libfwevt/libfwevt_opcode.c +378 -0
- libfwevt_python-20260522/libfwevt/libfwevt_opcode.h +70 -0
- libfwevt_python-20260522/libfwevt/libfwevt_provider.c +4270 -0
- libfwevt_python-20260522/libfwevt/libfwevt_provider.h +325 -0
- libfwevt_python-20260522/libfwevt/libfwevt_support.c +41 -0
- libfwevt_python-20260522/libfwevt/libfwevt_support.h +47 -0
- libfwevt_python-20260522/libfwevt/libfwevt_task.c +402 -0
- libfwevt_python-20260522/libfwevt/libfwevt_task.h +70 -0
- libfwevt_python-20260522/libfwevt/libfwevt_template.c +1616 -0
- libfwevt_python-20260522/libfwevt/libfwevt_template.h +194 -0
- libfwevt_python-20260522/libfwevt/libfwevt_template_item.c +869 -0
- libfwevt_python-20260522/libfwevt/libfwevt_template_item.h +145 -0
- libfwevt_python-20260522/libfwevt/libfwevt_types.h +75 -0
- libfwevt_python-20260522/libfwevt/libfwevt_unused.h +44 -0
- libfwevt_python-20260522/libfwevt/libfwevt_xml_document.c +6739 -0
- libfwevt_python-20260522/libfwevt/libfwevt_xml_document.h +311 -0
- libfwevt_python-20260522/libfwevt/libfwevt_xml_string.c +984 -0
- libfwevt_python-20260522/libfwevt/libfwevt_xml_string.h +72 -0
- libfwevt_python-20260522/libfwevt/libfwevt_xml_tag.c +4655 -0
- libfwevt_python-20260522/libfwevt/libfwevt_xml_tag.h +305 -0
- libfwevt_python-20260522/libfwevt/libfwevt_xml_template_value.c +412 -0
- libfwevt_python-20260522/libfwevt/libfwevt_xml_template_value.h +109 -0
- libfwevt_python-20260522/libfwevt/libfwevt_xml_token.c +236 -0
- libfwevt_python-20260522/libfwevt/libfwevt_xml_token.h +67 -0
- libfwevt_python-20260522/libfwevt/libfwevt_xml_value.c +3593 -0
- libfwevt_python-20260522/libfwevt/libfwevt_xml_value.h +266 -0
- libfwevt_python-20260522/libfwevt.spec +85 -0
- libfwevt_python-20260522/ltmain.sh +11436 -0
- libfwevt_python-20260522/m4/common.m4 +634 -0
- libfwevt_python-20260522/m4/libcdata.m4 +227 -0
- libfwevt_python-20260522/m4/libcerror.m4 +186 -0
- libfwevt_python-20260522/m4/libcnotify.m4 +160 -0
- libfwevt_python-20260522/m4/libcthreads.m4 +214 -0
- libfwevt_python-20260522/m4/libfdatetime.m4 +219 -0
- libfwevt_python-20260522/m4/libfguid.m4 +153 -0
- libfwevt_python-20260522/m4/libfwnt.m4 +172 -0
- libfwevt_python-20260522/m4/libtool.m4 +8427 -0
- libfwevt_python-20260522/m4/libuna.m4 +311 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/m4/ltoptions.m4 +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/m4/ltsugar.m4 +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/m4/ltversion.m4 +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/m4/lt~obsolete.m4 +0 -0
- libfwevt_python-20260522/m4/pthread.m4 +108 -0
- libfwevt_python-20260522/m4/python.m4 +208 -0
- libfwevt_python-20260522/manuals/libfwevt.3 +278 -0
- libfwevt_python-20260522/ossfuzz/manifest_fuzzer.cc +57 -0
- libfwevt_python-20260522/ossfuzz/ossfuzz_libfwevt.h +30 -0
- libfwevt_python-20260522/ossfuzz/xml_document_fuzzer.cc +60 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt.c +554 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt.h +51 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_channel.c +501 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_channel.h +80 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_channels.c +460 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_channels.h +97 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_error.c +422 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_error.h +60 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_event.c +573 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_event.h +88 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_events.c +460 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_events.h +97 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_guid.c +130 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_guid.h +43 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_integer.c +399 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_integer.h +56 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_keyword.c +302 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_keyword.h +72 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_keywords.c +460 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_keywords.h +97 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_level.c +299 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_level.h +72 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_levels.c +457 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_levels.h +97 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_libcerror.h +50 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_libfguid.h +49 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_libfwevt.h +30 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_manifest.c +684 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_manifest.h +94 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_map.c +302 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_map.h +72 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_maps.c +460 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_maps.h +97 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_opcode.c +302 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_opcode.h +72 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_opcodes.c +460 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_opcodes.h +97 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_provider.c +2461 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_provider.h +217 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_providers.c +460 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_providers.h +97 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_python.h +83 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_task.c +302 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_task.h +72 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_tasks.c +460 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_tasks.h +97 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_template.c +627 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_template.h +93 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_template_item.c +696 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_template_item.h +92 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_template_items.c +460 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_template_items.h +97 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_templates.c +460 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_templates.h +97 -0
- libfwevt_python-20260522/pyfwevt/pyfwevt_unused.h +44 -0
- libfwevt_python-20260522/pyproject.toml +35 -0
- libfwevt_python-20260522/pyproject.toml.in +35 -0
- libfwevt_python-20260522/tests/fwevt_test_channel.c +614 -0
- libfwevt_python-20260522/tests/fwevt_test_data_segment.c +358 -0
- libfwevt_python-20260522/tests/fwevt_test_date_time.c +241 -0
- libfwevt_python-20260522/tests/fwevt_test_error.c +150 -0
- libfwevt_python-20260522/tests/fwevt_test_event.c +885 -0
- libfwevt_python-20260522/tests/fwevt_test_floating_point.c +208 -0
- libfwevt_python-20260522/tests/fwevt_test_integer.c +228 -0
- libfwevt_python-20260522/tests/fwevt_test_keyword.c +616 -0
- libfwevt_python-20260522/tests/fwevt_test_level.c +615 -0
- libfwevt_python-20260522/tests/fwevt_test_libcerror.h +50 -0
- libfwevt_python-20260522/tests/fwevt_test_libcnotify.h +50 -0
- libfwevt_python-20260522/tests/fwevt_test_libfwevt.h +30 -0
- libfwevt_python-20260522/tests/fwevt_test_libuna.h +60 -0
- libfwevt_python-20260522/tests/fwevt_test_macros.h +257 -0
- libfwevt_python-20260522/tests/fwevt_test_manifest.c +1017 -0
- libfwevt_python-20260522/tests/fwevt_test_map.c +570 -0
- libfwevt_python-20260522/tests/fwevt_test_memory.c +177 -0
- libfwevt_python-20260522/tests/fwevt_test_memory.h +52 -0
- libfwevt_python-20260522/tests/fwevt_test_notify.c +229 -0
- libfwevt_python-20260522/tests/fwevt_test_opcode.c +614 -0
- libfwevt_python-20260522/tests/fwevt_test_provider.c +5030 -0
- libfwevt_python-20260522/tests/fwevt_test_support.c +86 -0
- libfwevt_python-20260522/tests/fwevt_test_task.c +618 -0
- libfwevt_python-20260522/tests/fwevt_test_template.c +1263 -0
- libfwevt_python-20260522/tests/fwevt_test_template_item.c +381 -0
- libfwevt_python-20260522/tests/fwevt_test_unused.h +50 -0
- libfwevt_python-20260522/tests/fwevt_test_xml_document.c +5394 -0
- libfwevt_python-20260522/tests/fwevt_test_xml_tag.c +3591 -0
- libfwevt_python-20260522/tests/fwevt_test_xml_template_value.c +1100 -0
- libfwevt_python-20260522/tests/fwevt_test_xml_token.c +505 -0
- libfwevt_python-20260522/tests/fwevt_test_xml_value.c +1092 -0
- libfwevt_python-20260522/tests/pyfwevt_test_event.py +151 -0
- libfwevt_python-20260522/tests/pyfwevt_test_manifest.py +113 -0
- libfwevt_python-20260522/tests/pyfwevt_test_provider.py +306 -0
- libfwevt_python-20260522/tests/pyfwevt_test_support.py +37 -0
- libfwevt_python-20260522/tests/test_library.sh +204 -0
- libfwevt_python-20260522/tests/test_python_module.sh +196 -0
- libfwevt-20240504/AUTHORS +0 -4
- libfwevt-20240504/Makefile.am +0 -90
- libfwevt-20240504/Makefile.in +0 -1125
- libfwevt-20240504/PKG-INFO +0 -13
- libfwevt-20240504/README +0 -12
- libfwevt-20240504/acinclude.m4 +0 -35
- libfwevt-20240504/common/byte_stream.h +0 -257
- libfwevt-20240504/common/common.h +0 -43
- libfwevt-20240504/common/config.h +0 -428
- libfwevt-20240504/common/config_borlandc.h +0 -26
- libfwevt-20240504/common/config_msc.h +0 -34
- libfwevt-20240504/common/config_winapi.h +0 -95
- libfwevt-20240504/common/file_stream.h +0 -151
- libfwevt-20240504/common/memory.h +0 -129
- libfwevt-20240504/common/narrow_string.h +0 -187
- libfwevt-20240504/common/system_string.h +0 -154
- libfwevt-20240504/common/types.h +0 -392
- libfwevt-20240504/common/types.h.in +0 -392
- libfwevt-20240504/common/wide_string.h +0 -175
- libfwevt-20240504/config.guess +0 -1774
- libfwevt-20240504/config.sub +0 -1907
- libfwevt-20240504/configure +0 -47941
- libfwevt-20240504/configure.ac +0 -191
- libfwevt-20240504/dpkg/changelog +0 -5
- libfwevt-20240504/dpkg/copyright +0 -25
- libfwevt-20240504/include/libfwevt/definitions.h +0 -153
- libfwevt-20240504/include/libfwevt/definitions.h.in +0 -153
- libfwevt-20240504/include/libfwevt/error.h +0 -291
- libfwevt-20240504/include/libfwevt/extern.h +0 -44
- libfwevt-20240504/include/libfwevt/features.h +0 -38
- libfwevt-20240504/include/libfwevt/features.h.in +0 -38
- libfwevt-20240504/include/libfwevt/types.h +0 -225
- libfwevt-20240504/include/libfwevt/types.h.in +0 -225
- libfwevt-20240504/include/libfwevt.h +0 -1205
- libfwevt-20240504/include/libfwevt.h.in +0 -1205
- libfwevt-20240504/libcdata/libcdata_array.c +0 -2015
- libfwevt-20240504/libcdata/libcdata_array.h +0 -200
- libfwevt-20240504/libcdata/libcdata_btree.c +0 -964
- libfwevt-20240504/libcdata/libcdata_btree.h +0 -141
- libfwevt-20240504/libcdata/libcdata_btree_node.c +0 -1607
- libfwevt-20240504/libcdata/libcdata_btree_node.h +0 -101
- libfwevt-20240504/libcdata/libcdata_btree_values_list.c +0 -217
- libfwevt-20240504/libcdata/libcdata_btree_values_list.h +0 -55
- libfwevt-20240504/libcdata/libcdata_definitions.h +0 -81
- libfwevt-20240504/libcdata/libcdata_error.c +0 -111
- libfwevt-20240504/libcdata/libcdata_error.h +0 -74
- libfwevt-20240504/libcdata/libcdata_extern.h +0 -46
- libfwevt-20240504/libcdata/libcdata_libcerror.h +0 -50
- libfwevt-20240504/libcdata/libcdata_libcthreads.h +0 -64
- libfwevt-20240504/libcdata/libcdata_list.c +0 -2906
- libfwevt-20240504/libcdata/libcdata_list.h +0 -235
- libfwevt-20240504/libcdata/libcdata_list_element.c +0 -926
- libfwevt-20240504/libcdata/libcdata_list_element.h +0 -142
- libfwevt-20240504/libcdata/libcdata_range_list.c +0 -4922
- libfwevt-20240504/libcdata/libcdata_range_list.h +0 -382
- libfwevt-20240504/libcdata/libcdata_range_list_value.c +0 -429
- libfwevt-20240504/libcdata/libcdata_range_list_value.h +0 -100
- libfwevt-20240504/libcdata/libcdata_support.c +0 -39
- libfwevt-20240504/libcdata/libcdata_support.h +0 -47
- libfwevt-20240504/libcdata/libcdata_tree_node.c +0 -4216
- libfwevt-20240504/libcdata/libcdata_tree_node.h +0 -301
- libfwevt-20240504/libcdata/libcdata_types.h +0 -57
- libfwevt-20240504/libcdata/libcdata_unused.h +0 -44
- libfwevt-20240504/libcerror/libcerror_definitions.h +0 -326
- libfwevt-20240504/libcerror/libcerror_error.c +0 -827
- libfwevt-20240504/libcerror/libcerror_error.h +0 -125
- libfwevt-20240504/libcerror/libcerror_extern.h +0 -46
- libfwevt-20240504/libcerror/libcerror_support.c +0 -39
- libfwevt-20240504/libcerror/libcerror_support.h +0 -47
- libfwevt-20240504/libcerror/libcerror_system.c +0 -587
- libfwevt-20240504/libcerror/libcerror_system.h +0 -78
- libfwevt-20240504/libcerror/libcerror_types.h +0 -51
- libfwevt-20240504/libcerror/libcerror_unused.h +0 -44
- libfwevt-20240504/libcnotify/libcnotify_definitions.h +0 -54
- libfwevt-20240504/libcnotify/libcnotify_extern.h +0 -46
- libfwevt-20240504/libcnotify/libcnotify_libcerror.h +0 -50
- libfwevt-20240504/libcnotify/libcnotify_print.c +0 -400
- libfwevt-20240504/libcnotify/libcnotify_print.h +0 -68
- libfwevt-20240504/libcnotify/libcnotify_stream.c +0 -182
- libfwevt-20240504/libcnotify/libcnotify_stream.h +0 -56
- libfwevt-20240504/libcnotify/libcnotify_support.c +0 -39
- libfwevt-20240504/libcnotify/libcnotify_support.h +0 -49
- libfwevt-20240504/libcnotify/libcnotify_unused.h +0 -44
- libfwevt-20240504/libcnotify/libcnotify_verbose.c +0 -38
- libfwevt-20240504/libcnotify/libcnotify_verbose.h +0 -50
- libfwevt-20240504/libcthreads/libcthreads_condition.c +0 -735
- libfwevt-20240504/libcthreads/libcthreads_condition.h +0 -120
- libfwevt-20240504/libcthreads/libcthreads_definitions.h +0 -84
- libfwevt-20240504/libcthreads/libcthreads_error.c +0 -111
- libfwevt-20240504/libcthreads/libcthreads_error.h +0 -74
- libfwevt-20240504/libcthreads/libcthreads_extern.h +0 -46
- libfwevt-20240504/libcthreads/libcthreads_libcerror.h +0 -50
- libfwevt-20240504/libcthreads/libcthreads_lock.c +0 -391
- libfwevt-20240504/libcthreads/libcthreads_lock.h +0 -88
- libfwevt-20240504/libcthreads/libcthreads_mutex.c +0 -601
- libfwevt-20240504/libcthreads/libcthreads_mutex.h +0 -98
- libfwevt-20240504/libcthreads/libcthreads_queue.c +0 -1150
- libfwevt-20240504/libcthreads/libcthreads_queue.h +0 -136
- libfwevt-20240504/libcthreads/libcthreads_read_write_lock.c +0 -690
- libfwevt-20240504/libcthreads/libcthreads_read_write_lock.h +0 -119
- libfwevt-20240504/libcthreads/libcthreads_repeating_thread.c +0 -644
- libfwevt-20240504/libcthreads/libcthreads_repeating_thread.h +0 -115
- libfwevt-20240504/libcthreads/libcthreads_support.c +0 -39
- libfwevt-20240504/libcthreads/libcthreads_support.h +0 -47
- libfwevt-20240504/libcthreads/libcthreads_thread.c +0 -405
- libfwevt-20240504/libcthreads/libcthreads_thread.h +0 -95
- libfwevt-20240504/libcthreads/libcthreads_thread_attributes.c +0 -149
- libfwevt-20240504/libcthreads/libcthreads_thread_attributes.h +0 -78
- libfwevt-20240504/libcthreads/libcthreads_thread_pool.c +0 -1721
- libfwevt-20240504/libcthreads/libcthreads_thread_pool.h +0 -177
- libfwevt-20240504/libcthreads/libcthreads_types.h +0 -63
- libfwevt-20240504/libcthreads/libcthreads_unused.h +0 -44
- libfwevt-20240504/libfdatetime/libfdatetime_date_time_values.c +0 -1906
- libfwevt-20240504/libfdatetime/libfdatetime_date_time_values.h +0 -121
- libfwevt-20240504/libfdatetime/libfdatetime_definitions.h +0 -121
- libfwevt-20240504/libfdatetime/libfdatetime_error.c +0 -111
- libfwevt-20240504/libfdatetime/libfdatetime_error.h +0 -74
- libfwevt-20240504/libfdatetime/libfdatetime_extern.h +0 -46
- libfwevt-20240504/libfdatetime/libfdatetime_fat_date_time.c +0 -1258
- libfwevt-20240504/libfdatetime/libfdatetime_fat_date_time.h +0 -172
- libfwevt-20240504/libfdatetime/libfdatetime_filetime.c +0 -1465
- libfwevt-20240504/libfdatetime/libfdatetime_filetime.h +0 -177
- libfwevt-20240504/libfdatetime/libfdatetime_floatingtime.c +0 -1333
- libfwevt-20240504/libfdatetime/libfdatetime_floatingtime.h +0 -168
- libfwevt-20240504/libfdatetime/libfdatetime_hfs_time.c +0 -1329
- libfwevt-20240504/libfdatetime/libfdatetime_hfs_time.h +0 -166
- libfwevt-20240504/libfdatetime/libfdatetime_libcerror.h +0 -50
- libfwevt-20240504/libfdatetime/libfdatetime_nsf_timedate.c +0 -1373
- libfwevt-20240504/libfdatetime/libfdatetime_nsf_timedate.h +0 -177
- libfwevt-20240504/libfdatetime/libfdatetime_posix_time.c +0 -1842
- libfwevt-20240504/libfdatetime/libfdatetime_posix_time.h +0 -189
- libfwevt-20240504/libfdatetime/libfdatetime_support.c +0 -41
- libfwevt-20240504/libfdatetime/libfdatetime_support.h +0 -47
- libfwevt-20240504/libfdatetime/libfdatetime_systemtime.c +0 -1779
- libfwevt-20240504/libfdatetime/libfdatetime_systemtime.h +0 -180
- libfwevt-20240504/libfdatetime/libfdatetime_types.h +0 -63
- libfwevt-20240504/libfdatetime/libfdatetime_unused.h +0 -44
- libfwevt-20240504/libfguid/libfguid_definitions.h +0 -84
- libfwevt-20240504/libfguid/libfguid_error.c +0 -111
- libfwevt-20240504/libfguid/libfguid_error.h +0 -74
- libfwevt-20240504/libfguid/libfguid_extern.h +0 -46
- libfwevt-20240504/libfguid/libfguid_identifier.c +0 -2524
- libfwevt-20240504/libfguid/libfguid_identifier.h +0 -204
- libfwevt-20240504/libfguid/libfguid_libcerror.h +0 -50
- libfwevt-20240504/libfguid/libfguid_support.c +0 -41
- libfwevt-20240504/libfguid/libfguid_support.h +0 -47
- libfwevt-20240504/libfguid/libfguid_types.h +0 -47
- libfwevt-20240504/libfguid/libfguid_unused.h +0 -44
- libfwevt-20240504/libfwevt/fwevt_template.h +0 -557
- libfwevt-20240504/libfwevt/libfwevt.c +0 -80
- libfwevt-20240504/libfwevt/libfwevt.rc +0 -38
- libfwevt-20240504/libfwevt/libfwevt.rc.in +0 -38
- libfwevt-20240504/libfwevt/libfwevt_channel.c +0 -698
- libfwevt-20240504/libfwevt/libfwevt_channel.h +0 -110
- libfwevt-20240504/libfwevt/libfwevt_data_segment.c +0 -274
- libfwevt-20240504/libfwevt/libfwevt_data_segment.h +0 -94
- libfwevt-20240504/libfwevt/libfwevt_date_time.c +0 -468
- libfwevt-20240504/libfwevt/libfwevt_date_time.h +0 -45
- libfwevt-20240504/libfwevt/libfwevt_debug.c +0 -689
- libfwevt-20240504/libfwevt/libfwevt_debug.h +0 -70
- libfwevt-20240504/libfwevt/libfwevt_definitions.h +0 -168
- libfwevt-20240504/libfwevt/libfwevt_definitions.h.in +0 -168
- libfwevt-20240504/libfwevt/libfwevt_error.c +0 -111
- libfwevt-20240504/libfwevt/libfwevt_error.h +0 -74
- libfwevt-20240504/libfwevt/libfwevt_event.c +0 -545
- libfwevt-20240504/libfwevt/libfwevt_event.h +0 -122
- libfwevt-20240504/libfwevt/libfwevt_extern.h +0 -46
- libfwevt-20240504/libfwevt/libfwevt_floating_point.c +0 -1296
- libfwevt-20240504/libfwevt/libfwevt_floating_point.h +0 -77
- libfwevt-20240504/libfwevt/libfwevt_integer.c +0 -866
- libfwevt-20240504/libfwevt/libfwevt_integer.h +0 -102
- libfwevt-20240504/libfwevt/libfwevt_keyword.c +0 -378
- libfwevt-20240504/libfwevt/libfwevt_keyword.h +0 -70
- libfwevt-20240504/libfwevt/libfwevt_level.c +0 -377
- libfwevt-20240504/libfwevt/libfwevt_level.h +0 -70
- libfwevt-20240504/libfwevt/libfwevt_libcdata.h +0 -54
- libfwevt-20240504/libfwevt/libfwevt_libcerror.h +0 -50
- libfwevt-20240504/libfwevt/libfwevt_libcnotify.h +0 -50
- libfwevt-20240504/libfwevt/libfwevt_libfdatetime.h +0 -56
- libfwevt-20240504/libfwevt/libfwevt_libfguid.h +0 -49
- libfwevt-20240504/libfwevt/libfwevt_libfwnt.h +0 -58
- libfwevt-20240504/libfwevt/libfwevt_libuna.h +0 -60
- libfwevt-20240504/libfwevt/libfwevt_manifest.c +0 -839
- libfwevt-20240504/libfwevt/libfwevt_manifest.h +0 -97
- libfwevt-20240504/libfwevt/libfwevt_map.c +0 -275
- libfwevt-20240504/libfwevt/libfwevt_map.h +0 -70
- libfwevt-20240504/libfwevt/libfwevt_notify.c +0 -120
- libfwevt-20240504/libfwevt/libfwevt_notify.h +0 -63
- libfwevt-20240504/libfwevt/libfwevt_opcode.c +0 -378
- libfwevt-20240504/libfwevt/libfwevt_opcode.h +0 -70
- libfwevt-20240504/libfwevt/libfwevt_provider.c +0 -4270
- libfwevt-20240504/libfwevt/libfwevt_provider.h +0 -325
- libfwevt-20240504/libfwevt/libfwevt_support.c +0 -41
- libfwevt-20240504/libfwevt/libfwevt_support.h +0 -47
- libfwevt-20240504/libfwevt/libfwevt_task.c +0 -402
- libfwevt-20240504/libfwevt/libfwevt_task.h +0 -70
- libfwevt-20240504/libfwevt/libfwevt_template.c +0 -1616
- libfwevt-20240504/libfwevt/libfwevt_template.h +0 -194
- libfwevt-20240504/libfwevt/libfwevt_template_item.c +0 -869
- libfwevt-20240504/libfwevt/libfwevt_template_item.h +0 -145
- libfwevt-20240504/libfwevt/libfwevt_types.h +0 -75
- libfwevt-20240504/libfwevt/libfwevt_unused.h +0 -44
- libfwevt-20240504/libfwevt/libfwevt_xml_document.c +0 -6739
- libfwevt-20240504/libfwevt/libfwevt_xml_document.h +0 -311
- libfwevt-20240504/libfwevt/libfwevt_xml_string.c +0 -984
- libfwevt-20240504/libfwevt/libfwevt_xml_string.h +0 -72
- libfwevt-20240504/libfwevt/libfwevt_xml_tag.c +0 -4655
- libfwevt-20240504/libfwevt/libfwevt_xml_tag.h +0 -305
- libfwevt-20240504/libfwevt/libfwevt_xml_template_value.c +0 -412
- libfwevt-20240504/libfwevt/libfwevt_xml_template_value.h +0 -109
- libfwevt-20240504/libfwevt/libfwevt_xml_token.c +0 -236
- libfwevt-20240504/libfwevt/libfwevt_xml_token.h +0 -67
- libfwevt-20240504/libfwevt/libfwevt_xml_value.c +0 -3611
- libfwevt-20240504/libfwevt/libfwevt_xml_value.h +0 -266
- libfwevt-20240504/libfwevt.spec +0 -85
- libfwevt-20240504/ltmain.sh +0 -11429
- libfwevt-20240504/m4/common.m4 +0 -578
- libfwevt-20240504/m4/libcdata.m4 +0 -599
- libfwevt-20240504/m4/libcerror.m4 +0 -237
- libfwevt-20240504/m4/libcnotify.m4 +0 -209
- libfwevt-20240504/m4/libcthreads.m4 +0 -385
- libfwevt-20240504/m4/libfdatetime.m4 +0 -560
- libfwevt-20240504/m4/libfguid.m4 +0 -210
- libfwevt-20240504/m4/libfwnt.m4 +0 -320
- libfwevt-20240504/m4/libtool.m4 +0 -8403
- libfwevt-20240504/m4/libuna.m4 +0 -1044
- libfwevt-20240504/m4/pthread.m4 +0 -196
- libfwevt-20240504/m4/python.m4 +0 -208
- libfwevt-20240504/manuals/libfwevt.3 +0 -278
- libfwevt-20240504/ossfuzz/manifest_fuzzer.cc +0 -57
- libfwevt-20240504/ossfuzz/ossfuzz_libfwevt.h +0 -30
- libfwevt-20240504/ossfuzz/xml_document_fuzzer.cc +0 -60
- libfwevt-20240504/pyfwevt/pyfwevt.c +0 -554
- libfwevt-20240504/pyfwevt/pyfwevt.h +0 -51
- libfwevt-20240504/pyfwevt/pyfwevt_channel.c +0 -501
- libfwevt-20240504/pyfwevt/pyfwevt_channel.h +0 -80
- libfwevt-20240504/pyfwevt/pyfwevt_channels.c +0 -460
- libfwevt-20240504/pyfwevt/pyfwevt_channels.h +0 -97
- libfwevt-20240504/pyfwevt/pyfwevt_error.c +0 -422
- libfwevt-20240504/pyfwevt/pyfwevt_error.h +0 -60
- libfwevt-20240504/pyfwevt/pyfwevt_event.c +0 -573
- libfwevt-20240504/pyfwevt/pyfwevt_event.h +0 -88
- libfwevt-20240504/pyfwevt/pyfwevt_events.c +0 -460
- libfwevt-20240504/pyfwevt/pyfwevt_events.h +0 -97
- libfwevt-20240504/pyfwevt/pyfwevt_guid.c +0 -130
- libfwevt-20240504/pyfwevt/pyfwevt_guid.h +0 -43
- libfwevt-20240504/pyfwevt/pyfwevt_integer.c +0 -399
- libfwevt-20240504/pyfwevt/pyfwevt_integer.h +0 -56
- libfwevt-20240504/pyfwevt/pyfwevt_keyword.c +0 -302
- libfwevt-20240504/pyfwevt/pyfwevt_keyword.h +0 -72
- libfwevt-20240504/pyfwevt/pyfwevt_keywords.c +0 -460
- libfwevt-20240504/pyfwevt/pyfwevt_keywords.h +0 -97
- libfwevt-20240504/pyfwevt/pyfwevt_level.c +0 -299
- libfwevt-20240504/pyfwevt/pyfwevt_level.h +0 -72
- libfwevt-20240504/pyfwevt/pyfwevt_levels.c +0 -457
- libfwevt-20240504/pyfwevt/pyfwevt_levels.h +0 -97
- libfwevt-20240504/pyfwevt/pyfwevt_libcerror.h +0 -50
- libfwevt-20240504/pyfwevt/pyfwevt_libfguid.h +0 -49
- libfwevt-20240504/pyfwevt/pyfwevt_libfwevt.h +0 -30
- libfwevt-20240504/pyfwevt/pyfwevt_manifest.c +0 -684
- libfwevt-20240504/pyfwevt/pyfwevt_manifest.h +0 -94
- libfwevt-20240504/pyfwevt/pyfwevt_map.c +0 -302
- libfwevt-20240504/pyfwevt/pyfwevt_map.h +0 -72
- libfwevt-20240504/pyfwevt/pyfwevt_maps.c +0 -460
- libfwevt-20240504/pyfwevt/pyfwevt_maps.h +0 -97
- libfwevt-20240504/pyfwevt/pyfwevt_opcode.c +0 -302
- libfwevt-20240504/pyfwevt/pyfwevt_opcode.h +0 -72
- libfwevt-20240504/pyfwevt/pyfwevt_opcodes.c +0 -460
- libfwevt-20240504/pyfwevt/pyfwevt_opcodes.h +0 -97
- libfwevt-20240504/pyfwevt/pyfwevt_provider.c +0 -2461
- libfwevt-20240504/pyfwevt/pyfwevt_provider.h +0 -217
- libfwevt-20240504/pyfwevt/pyfwevt_providers.c +0 -460
- libfwevt-20240504/pyfwevt/pyfwevt_providers.h +0 -97
- libfwevt-20240504/pyfwevt/pyfwevt_python.h +0 -83
- libfwevt-20240504/pyfwevt/pyfwevt_task.c +0 -302
- libfwevt-20240504/pyfwevt/pyfwevt_task.h +0 -72
- libfwevt-20240504/pyfwevt/pyfwevt_tasks.c +0 -460
- libfwevt-20240504/pyfwevt/pyfwevt_tasks.h +0 -97
- libfwevt-20240504/pyfwevt/pyfwevt_template.c +0 -627
- libfwevt-20240504/pyfwevt/pyfwevt_template.h +0 -93
- libfwevt-20240504/pyfwevt/pyfwevt_template_item.c +0 -696
- libfwevt-20240504/pyfwevt/pyfwevt_template_item.h +0 -92
- libfwevt-20240504/pyfwevt/pyfwevt_template_items.c +0 -460
- libfwevt-20240504/pyfwevt/pyfwevt_template_items.h +0 -97
- libfwevt-20240504/pyfwevt/pyfwevt_templates.c +0 -460
- libfwevt-20240504/pyfwevt/pyfwevt_templates.h +0 -97
- libfwevt-20240504/pyfwevt/pyfwevt_unused.h +0 -44
- libfwevt-20240504/pyproject.toml +0 -4
- libfwevt-20240504/setup.cfg +0 -16
- libfwevt-20240504/setup.cfg.in +0 -16
- libfwevt-20240504/setup.py +0 -293
- libfwevt-20240504/tests/fwevt_test_channel.c +0 -614
- libfwevt-20240504/tests/fwevt_test_data_segment.c +0 -358
- libfwevt-20240504/tests/fwevt_test_date_time.c +0 -241
- libfwevt-20240504/tests/fwevt_test_error.c +0 -150
- libfwevt-20240504/tests/fwevt_test_event.c +0 -885
- libfwevt-20240504/tests/fwevt_test_floating_point.c +0 -208
- libfwevt-20240504/tests/fwevt_test_integer.c +0 -228
- libfwevt-20240504/tests/fwevt_test_keyword.c +0 -616
- libfwevt-20240504/tests/fwevt_test_level.c +0 -615
- libfwevt-20240504/tests/fwevt_test_libcerror.h +0 -50
- libfwevt-20240504/tests/fwevt_test_libcnotify.h +0 -50
- libfwevt-20240504/tests/fwevt_test_libfwevt.h +0 -30
- libfwevt-20240504/tests/fwevt_test_libuna.h +0 -60
- libfwevt-20240504/tests/fwevt_test_macros.h +0 -257
- libfwevt-20240504/tests/fwevt_test_manifest.c +0 -1017
- libfwevt-20240504/tests/fwevt_test_map.c +0 -570
- libfwevt-20240504/tests/fwevt_test_memory.c +0 -177
- libfwevt-20240504/tests/fwevt_test_memory.h +0 -52
- libfwevt-20240504/tests/fwevt_test_notify.c +0 -229
- libfwevt-20240504/tests/fwevt_test_opcode.c +0 -614
- libfwevt-20240504/tests/fwevt_test_provider.c +0 -5030
- libfwevt-20240504/tests/fwevt_test_support.c +0 -86
- libfwevt-20240504/tests/fwevt_test_task.c +0 -618
- libfwevt-20240504/tests/fwevt_test_template.c +0 -1263
- libfwevt-20240504/tests/fwevt_test_template_item.c +0 -381
- libfwevt-20240504/tests/fwevt_test_unused.h +0 -50
- libfwevt-20240504/tests/fwevt_test_xml_document.c +0 -5394
- libfwevt-20240504/tests/fwevt_test_xml_tag.c +0 -3591
- libfwevt-20240504/tests/fwevt_test_xml_template_value.c +0 -1100
- libfwevt-20240504/tests/fwevt_test_xml_token.c +0 -505
- libfwevt-20240504/tests/fwevt_test_xml_value.c +0 -1092
- libfwevt-20240504/tests/pyfwevt_test_event.py +0 -151
- libfwevt-20240504/tests/pyfwevt_test_manifest.py +0 -113
- libfwevt-20240504/tests/pyfwevt_test_provider.py +0 -306
- libfwevt-20240504/tests/pyfwevt_test_support.py +0 -37
- libfwevt-20240504/tests/test_library.sh +0 -193
- libfwevt-20240504/tests/test_python_module.sh +0 -195
- {libfwevt-20240504 → libfwevt_python-20260522}/ABOUT-NLS +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/COPYING +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/COPYING.LESSER +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/ChangeLog +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/NEWS +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/aclocal.m4 +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/common/Makefile.am +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/common/Makefile.in +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/common/config.h.in +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/compile +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/config.rpath +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/depcomp +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/dpkg/changelog.in +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/dpkg/compat +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/dpkg/control +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/dpkg/libfwevt-dev.install +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/dpkg/libfwevt-python3.install +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/dpkg/libfwevt.install +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/dpkg/rules +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/dpkg/source/format +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/include/Makefile.am +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/include/Makefile.in +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/install-sh +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libcdata/Makefile.am +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libcdata/Makefile.in +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libcerror/Makefile.am +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libcerror/Makefile.in +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libcnotify/Makefile.am +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libcnotify/Makefile.in +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libcthreads/Makefile.am +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libcthreads/Makefile.in +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfdatetime/Makefile.am +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfdatetime/Makefile.in +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfguid/Makefile.am +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfguid/Makefile.in +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwevt/Makefile.am +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwevt/Makefile.in +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwevt.pc.in +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwevt.spec.in +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/Makefile.am +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/Makefile.in +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/libfwnt_access_control_entry.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/libfwnt_access_control_entry.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/libfwnt_access_control_list.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/libfwnt_access_control_list.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/libfwnt_bit_stream.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/libfwnt_bit_stream.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/libfwnt_debug.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/libfwnt_debug.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/libfwnt_definitions.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/libfwnt_error.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/libfwnt_error.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/libfwnt_extern.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/libfwnt_huffman_tree.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/libfwnt_huffman_tree.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/libfwnt_libcdata.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/libfwnt_libcerror.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/libfwnt_libcnotify.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/libfwnt_locale_identifier.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/libfwnt_locale_identifier.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/libfwnt_lznt1.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/libfwnt_lznt1.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/libfwnt_lzx.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/libfwnt_lzx.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/libfwnt_lzxpress.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/libfwnt_lzxpress.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/libfwnt_notify.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/libfwnt_notify.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/libfwnt_security_descriptor.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/libfwnt_security_descriptor.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/libfwnt_security_identifier.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/libfwnt_security_identifier.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/libfwnt_support.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/libfwnt_support.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/libfwnt_types.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libfwnt/libfwnt_unused.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/Makefile.am +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/Makefile.in +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_base16_stream.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_base16_stream.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_base32_stream.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_base32_stream.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_base64_stream.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_base64_stream.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_byte_stream.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_byte_stream.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_iso_8859_10.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_iso_8859_10.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_iso_8859_13.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_iso_8859_13.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_iso_8859_14.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_iso_8859_14.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_iso_8859_15.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_iso_8859_15.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_iso_8859_16.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_iso_8859_16.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_iso_8859_2.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_iso_8859_2.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_iso_8859_3.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_iso_8859_3.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_iso_8859_4.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_iso_8859_4.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_iso_8859_5.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_iso_8859_5.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_iso_8859_6.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_iso_8859_6.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_iso_8859_7.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_iso_8859_7.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_iso_8859_8.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_iso_8859_8.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_iso_8859_9.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_iso_8859_9.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_koi8_r.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_koi8_r.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_koi8_u.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_koi8_u.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_arabic.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_arabic.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_celtic.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_celtic.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_centraleurroman.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_centraleurroman.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_croatian.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_croatian.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_cyrillic.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_cyrillic.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_dingbats.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_dingbats.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_farsi.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_farsi.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_gaelic.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_gaelic.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_greek.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_greek.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_icelandic.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_icelandic.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_inuit.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_inuit.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_roman.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_roman.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_romanian.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_romanian.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_russian.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_russian.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_symbol.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_symbol.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_thai.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_thai.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_turkish.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_turkish.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_ukrainian.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_mac_ukrainian.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_windows_1250.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_windows_1250.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_windows_1251.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_windows_1251.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_windows_1252.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_windows_1252.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_windows_1253.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_windows_1253.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_windows_1254.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_windows_1254.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_windows_1255.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_windows_1255.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_windows_1256.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_windows_1256.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_windows_1257.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_windows_1257.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_windows_1258.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_windows_1258.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_windows_874.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_windows_874.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_windows_932.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_windows_932.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_windows_936.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_windows_936.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_windows_949.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_windows_949.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_windows_950.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_codepage_windows_950.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_definitions.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_error.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_error.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_extern.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_libcerror.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_scsu.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_scsu.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_support.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_support.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_types.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_unicode_character.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_unicode_character.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_unused.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_url_stream.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_url_stream.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_utf16_stream.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_utf16_stream.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_utf16_string.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_utf16_string.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_utf32_stream.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_utf32_stream.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_utf32_string.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_utf32_string.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_utf7_stream.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_utf7_stream.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_utf8_stream.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_utf8_stream.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_utf8_string.c +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/libuna/libuna_utf8_string.h +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/m4/gettext.m4 +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/m4/host-cpu-c-abi.m4 +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/m4/iconv.m4 +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/m4/intlmacosx.m4 +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/m4/lib-ld.m4 +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/m4/lib-link.m4 +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/m4/lib-prefix.m4 +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/m4/nls.m4 +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/m4/po.m4 +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/m4/progtest.m4 +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/m4/tests.m4 +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/m4/types.m4 +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/manuals/Makefile.am +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/manuals/Makefile.in +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/missing +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/Makefile.am +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/Makefile.in +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/fwevt_test_channel/fwevt_test_channel.vcproj +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/fwevt_test_data_segment/fwevt_test_data_segment.vcproj +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/fwevt_test_date_time/fwevt_test_date_time.vcproj +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/fwevt_test_error/fwevt_test_error.vcproj +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/fwevt_test_event/fwevt_test_event.vcproj +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/fwevt_test_floating_point/fwevt_test_floating_point.vcproj +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/fwevt_test_integer/fwevt_test_integer.vcproj +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/fwevt_test_keyword/fwevt_test_keyword.vcproj +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/fwevt_test_level/fwevt_test_level.vcproj +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/fwevt_test_manifest/fwevt_test_manifest.vcproj +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/fwevt_test_map/fwevt_test_map.vcproj +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/fwevt_test_notify/fwevt_test_notify.vcproj +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/fwevt_test_opcode/fwevt_test_opcode.vcproj +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/fwevt_test_provider/fwevt_test_provider.vcproj +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/fwevt_test_support/fwevt_test_support.vcproj +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/fwevt_test_task/fwevt_test_task.vcproj +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/fwevt_test_template/fwevt_test_template.vcproj +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/fwevt_test_template_item/fwevt_test_template_item.vcproj +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/fwevt_test_xml_document/fwevt_test_xml_document.vcproj +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/fwevt_test_xml_tag/fwevt_test_xml_tag.vcproj +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/fwevt_test_xml_template_value/fwevt_test_xml_template_value.vcproj +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/fwevt_test_xml_token/fwevt_test_xml_token.vcproj +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/fwevt_test_xml_value/fwevt_test_xml_value.vcproj +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/libcdata/libcdata.vcproj +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/libcerror/libcerror.vcproj +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/libcnotify/libcnotify.vcproj +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/libcthreads/libcthreads.vcproj +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/libfdatetime/libfdatetime.vcproj +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/libfguid/libfguid.vcproj +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/libfwevt/libfwevt.vcproj +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/libfwevt.sln +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/libfwnt/libfwnt.vcproj +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/libuna/libuna.vcproj +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/msvscpp/pyfwevt/pyfwevt.vcproj +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/ossfuzz/Makefile.am +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/ossfuzz/Makefile.in +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/po/ChangeLog +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/po/Makefile.in.in +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/po/Makevars +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/po/Makevars.in +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/po/POTFILES.in +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/po/Rules-quot +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/po/boldquot.sed +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/po/en@boldquot.header +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/po/en@quot.header +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/po/insert-header.sin +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/po/quot.sed +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/po/remove-potcdate.sin +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/pyfwevt/Makefile.am +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/pyfwevt/Makefile.in +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/test-driver +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/tests/Makefile.am +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/tests/Makefile.in +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/tests/test_manpage.sh +0 -0
- {libfwevt-20240504 → libfwevt_python-20260522}/tests/test_runner.sh +0 -0
|
File without changes
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
ACLOCAL_AMFLAGS = -I m4
|
|
2
|
+
|
|
3
|
+
SUBDIRS = \
|
|
4
|
+
include \
|
|
5
|
+
common \
|
|
6
|
+
libcerror \
|
|
7
|
+
libcthreads \
|
|
8
|
+
libcdata \
|
|
9
|
+
libcnotify \
|
|
10
|
+
libuna \
|
|
11
|
+
libfdatetime \
|
|
12
|
+
libfguid \
|
|
13
|
+
libfwnt \
|
|
14
|
+
libfwevt \
|
|
15
|
+
pyfwevt \
|
|
16
|
+
po \
|
|
17
|
+
manuals \
|
|
18
|
+
tests \
|
|
19
|
+
ossfuzz \
|
|
20
|
+
msvscpp
|
|
21
|
+
|
|
22
|
+
DPKG_FILES = \
|
|
23
|
+
dpkg/changelog \
|
|
24
|
+
dpkg/changelog.in \
|
|
25
|
+
dpkg/compat \
|
|
26
|
+
dpkg/control \
|
|
27
|
+
dpkg/copyright \
|
|
28
|
+
dpkg/rules \
|
|
29
|
+
dpkg/libfwevt-dev.install \
|
|
30
|
+
dpkg/libfwevt.install \
|
|
31
|
+
dpkg/libfwevt-python3.install \
|
|
32
|
+
dpkg/source/format
|
|
33
|
+
|
|
34
|
+
GETTEXT_FILES = \
|
|
35
|
+
config.rpath \
|
|
36
|
+
po/Makevars.in
|
|
37
|
+
|
|
38
|
+
PKGCONFIG_FILES = \
|
|
39
|
+
libfwevt.pc.in
|
|
40
|
+
|
|
41
|
+
SETUP_PY_FILES = \
|
|
42
|
+
_build.py \
|
|
43
|
+
pyproject.toml \
|
|
44
|
+
pyproject.toml.in
|
|
45
|
+
|
|
46
|
+
SPEC_FILES = \
|
|
47
|
+
libfwevt.spec \
|
|
48
|
+
libfwevt.spec.in
|
|
49
|
+
|
|
50
|
+
EXTRA_DIST = \
|
|
51
|
+
$(DPKG_FILES) \
|
|
52
|
+
$(GETTEXT_FILES) \
|
|
53
|
+
$(PKGCONFIG_FILES) \
|
|
54
|
+
$(SETUP_PY_FILES) \
|
|
55
|
+
$(SPEC_FILES)
|
|
56
|
+
|
|
57
|
+
DISTCLEANFILES = \
|
|
58
|
+
config.status \
|
|
59
|
+
config.cache \
|
|
60
|
+
config.log \
|
|
61
|
+
libfwevt.pc \
|
|
62
|
+
libfwevt.spec \
|
|
63
|
+
Makefile \
|
|
64
|
+
Makefile.in \
|
|
65
|
+
po/Makevars
|
|
66
|
+
|
|
67
|
+
pkgconfigdir = $(libdir)/pkgconfig
|
|
68
|
+
|
|
69
|
+
pkgconfig_DATA = \
|
|
70
|
+
libfwevt.pc
|
|
71
|
+
|
|
72
|
+
libtool: @LIBTOOL_DEPS@
|
|
73
|
+
cd $(srcdir) && $(SHELL) ./config.status --recheck
|
|
74
|
+
|
|
75
|
+
lib: library
|
|
76
|
+
|
|
77
|
+
library:
|
|
78
|
+
(cd $(srcdir)/common && $(MAKE) $(AM_MAKEFLAGS))
|
|
79
|
+
(cd $(srcdir)/libcerror && $(MAKE) $(AM_MAKEFLAGS))
|
|
80
|
+
(cd $(srcdir)/libcthreads && $(MAKE) $(AM_MAKEFLAGS))
|
|
81
|
+
(cd $(srcdir)/libcdata && $(MAKE) $(AM_MAKEFLAGS))
|
|
82
|
+
(cd $(srcdir)/libcnotify && $(MAKE) $(AM_MAKEFLAGS))
|
|
83
|
+
(cd $(srcdir)/libuna && $(MAKE) $(AM_MAKEFLAGS))
|
|
84
|
+
(cd $(srcdir)/libfdatetime && $(MAKE) $(AM_MAKEFLAGS))
|
|
85
|
+
(cd $(srcdir)/libfguid && $(MAKE) $(AM_MAKEFLAGS))
|
|
86
|
+
(cd $(srcdir)/libfwnt && $(MAKE) $(AM_MAKEFLAGS))
|
|
87
|
+
(cd $(srcdir)/libfwevt && $(MAKE) $(AM_MAKEFLAGS))
|
|
88
|
+
(cd $(srcdir)/po && $(MAKE) $(AM_MAKEFLAGS))
|
|
89
|
+
|