libfwevt-python 20231119__tar.gz → 20231230__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-20231119 → libfwevt-20231230}/PKG-INFO +1 -1
- {libfwevt-20231119 → libfwevt-20231230}/common/config.h +3 -3
- {libfwevt-20231119 → libfwevt-20231230}/configure +10 -10
- {libfwevt-20231119 → libfwevt-20231230}/configure.ac +1 -1
- libfwevt-20231230/dpkg/changelog +5 -0
- {libfwevt-20231119 → libfwevt-20231230}/include/libfwevt/definitions.h +2 -2
- {libfwevt-20231119 → libfwevt-20231230}/include/libfwevt/types.h +1 -0
- {libfwevt-20231119 → libfwevt-20231230}/include/libfwevt/types.h.in +1 -0
- {libfwevt-20231119 → libfwevt-20231230}/include/libfwevt.h +147 -2
- {libfwevt-20231119 → libfwevt-20231230}/include/libfwevt.h.in +147 -2
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/Makefile.am +1 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/Makefile.in +7 -3
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/fwevt_template.h +4 -4
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt.rc +2 -2
- libfwevt-20231230/libfwevt/libfwevt_channel.c +698 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_channel.h +40 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_definitions.h +2 -2
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_level.c +3 -3
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_opcode.c +1 -1
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_task.c +5 -5
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_template.c +279 -212
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_template.h +32 -3
- libfwevt-20231230/libfwevt/libfwevt_template_item.c +779 -0
- libfwevt-20231230/libfwevt/libfwevt_template_item.h +125 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_types.h +2 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt.spec +2 -2
- {libfwevt-20231119 → libfwevt-20231230}/manuals/libfwevt.3 +33 -1
- {libfwevt-20231119 → libfwevt-20231230}/msvscpp/Makefile.am +2 -0
- {libfwevt-20231119 → libfwevt-20231230}/msvscpp/Makefile.in +2 -0
- libfwevt-20231230/msvscpp/fwevt_test_notify/fwevt_test_notify.vcproj +214 -0
- libfwevt-20231230/msvscpp/fwevt_test_template_item/fwevt_test_template_item.vcproj +222 -0
- {libfwevt-20231119 → libfwevt-20231230}/msvscpp/libfwevt/libfwevt.vcproj +8 -0
- {libfwevt-20231119 → libfwevt-20231230}/msvscpp/libfwevt.sln +66 -46
- {libfwevt-20231119 → libfwevt-20231230}/msvscpp/pyfwevt/pyfwevt.vcproj +18 -2
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/Makefile.am +2 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/Makefile.in +27 -1
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt.c +36 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_channel.c +199 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_channel.h +8 -0
- libfwevt-20231230/pyfwevt/pyfwevt_template.c +627 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_template.h +21 -0
- libfwevt-20231230/pyfwevt/pyfwevt_template_item.c +566 -0
- libfwevt-20231230/pyfwevt/pyfwevt_template_item.h +84 -0
- libfwevt-20231230/pyfwevt/pyfwevt_template_items.c +460 -0
- libfwevt-20231230/pyfwevt/pyfwevt_template_items.h +97 -0
- {libfwevt-20231119 → libfwevt-20231230}/setup.cfg +1 -1
- {libfwevt-20231119 → libfwevt-20231230}/tests/Makefile.am +25 -0
- {libfwevt-20231119 → libfwevt-20231230}/tests/Makefile.in +58 -9
- libfwevt-20231230/tests/fwevt_test_notify.c +229 -0
- {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_template.c +8 -8
- libfwevt-20231230/tests/fwevt_test_template_item.c +381 -0
- {libfwevt-20231119 → libfwevt-20231230}/tests/test_library.sh +1 -1
- libfwevt-20231119/dpkg/changelog +0 -5
- libfwevt-20231119/libfwevt/libfwevt_channel.c +0 -392
- libfwevt-20231119/pyfwevt/pyfwevt_template.c +0 -302
- {libfwevt-20231119 → libfwevt-20231230}/ABOUT-NLS +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/AUTHORS +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/COPYING +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/COPYING.LESSER +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/ChangeLog +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/INSTALL +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/Makefile.am +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/Makefile.in +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/NEWS +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/README +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/acinclude.m4 +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/aclocal.m4 +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/common/Makefile.am +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/common/Makefile.in +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/common/byte_stream.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/common/common.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/common/config.h.in +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/common/config_borlandc.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/common/config_msc.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/common/config_winapi.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/common/file_stream.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/common/memory.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/common/narrow_string.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/common/system_string.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/common/types.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/common/types.h.in +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/common/wide_string.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/compile +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/config.guess +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/config.rpath +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/config.sub +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/depcomp +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/dpkg/changelog.in +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/dpkg/compat +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/dpkg/control +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/dpkg/copyright +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/dpkg/libfwevt-dev.install +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/dpkg/libfwevt-python3.install +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/dpkg/libfwevt.install +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/dpkg/rules +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/dpkg/source/format +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/include/Makefile.am +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/include/Makefile.in +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/include/libfwevt/definitions.h.in +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/include/libfwevt/error.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/include/libfwevt/extern.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/include/libfwevt/features.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/include/libfwevt/features.h.in +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/install-sh +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcdata/Makefile.am +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcdata/Makefile.in +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_array.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_array.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_btree.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_btree.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_btree_node.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_btree_node.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_btree_values_list.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_btree_values_list.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_definitions.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_error.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_error.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_extern.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_libcerror.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_libcthreads.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_list.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_list.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_list_element.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_list_element.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_range_list.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_range_list.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_range_list_value.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_range_list_value.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_support.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_support.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_tree_node.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_tree_node.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_types.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_unused.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcerror/Makefile.am +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcerror/Makefile.in +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcerror/libcerror_definitions.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcerror/libcerror_error.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcerror/libcerror_error.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcerror/libcerror_extern.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcerror/libcerror_support.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcerror/libcerror_support.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcerror/libcerror_system.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcerror/libcerror_system.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcerror/libcerror_types.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcerror/libcerror_unused.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcnotify/Makefile.am +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcnotify/Makefile.in +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcnotify/libcnotify_definitions.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcnotify/libcnotify_extern.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcnotify/libcnotify_libcerror.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcnotify/libcnotify_print.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcnotify/libcnotify_print.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcnotify/libcnotify_stream.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcnotify/libcnotify_stream.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcnotify/libcnotify_support.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcnotify/libcnotify_support.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcnotify/libcnotify_unused.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcnotify/libcnotify_verbose.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcnotify/libcnotify_verbose.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcthreads/Makefile.am +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcthreads/Makefile.in +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_condition.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_condition.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_definitions.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_error.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_error.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_extern.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_libcerror.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_lock.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_lock.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_mutex.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_mutex.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_queue.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_queue.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_read_write_lock.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_read_write_lock.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_repeating_thread.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_repeating_thread.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_support.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_support.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_thread.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_thread.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_thread_attributes.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_thread_attributes.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_thread_pool.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_thread_pool.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_types.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_unused.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/Makefile.am +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/Makefile.in +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_date_time_values.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_date_time_values.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_definitions.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_error.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_error.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_extern.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_fat_date_time.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_fat_date_time.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_filetime.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_filetime.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_floatingtime.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_floatingtime.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_hfs_time.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_hfs_time.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_libcerror.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_nsf_timedate.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_nsf_timedate.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_posix_time.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_posix_time.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_support.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_support.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_systemtime.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_systemtime.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_types.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_unused.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfguid/Makefile.am +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfguid/Makefile.in +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfguid/libfguid_definitions.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfguid/libfguid_error.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfguid/libfguid_error.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfguid/libfguid_extern.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfguid/libfguid_identifier.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfguid/libfguid_identifier.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfguid/libfguid_libcerror.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfguid/libfguid_support.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfguid/libfguid_support.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfguid/libfguid_types.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfguid/libfguid_unused.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/Makefile.am +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/Makefile.in +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_binary_data.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_binary_data.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_codepage.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_data_handle.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_data_handle.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_definitions.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_error.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_error.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_extern.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_filetime.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_filetime.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_floating_point.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_floating_point.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_integer.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_integer.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_libcdata.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_libcerror.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_libcnotify.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_libfdatetime.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_libfguid.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_libfwnt.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_libuna.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_split_utf16_string.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_split_utf16_string.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_split_utf8_string.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_split_utf8_string.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_string.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_string.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_support.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_support.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_table.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_table.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_types.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_unused.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_utf16_string.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_utf16_string.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_utf8_string.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_utf8_string.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_value.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_value.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_value_entry.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_value_entry.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_value_type.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_value_type.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt.rc.in +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_debug.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_debug.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_definitions.h.in +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_error.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_error.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_event.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_event.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_extern.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_keyword.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_keyword.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_level.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_libcdata.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_libcerror.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_libcnotify.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_libfguid.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_libfvalue.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_libuna.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_manifest.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_manifest.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_map.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_map.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_notify.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_notify.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_opcode.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_provider.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_provider.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_support.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_support.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_task.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_unused.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_xml_document.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_xml_document.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_xml_tag.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_xml_tag.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_xml_template_value.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_xml_template_value.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_xml_token.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_xml_token.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt.pc.in +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libfwevt.spec.in +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/Makefile.am +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/Makefile.in +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_base16_stream.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_base16_stream.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_base32_stream.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_base32_stream.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_base64_stream.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_base64_stream.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_byte_stream.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_byte_stream.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_10.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_10.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_13.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_13.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_14.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_14.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_15.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_15.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_16.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_16.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_2.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_2.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_3.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_3.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_4.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_4.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_5.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_5.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_6.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_6.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_7.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_7.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_8.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_8.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_9.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_9.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_koi8_r.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_koi8_r.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_koi8_u.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_koi8_u.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_arabic.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_arabic.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_celtic.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_celtic.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_centraleurroman.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_centraleurroman.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_croatian.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_croatian.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_cyrillic.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_cyrillic.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_dingbats.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_dingbats.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_farsi.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_farsi.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_gaelic.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_gaelic.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_greek.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_greek.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_icelandic.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_icelandic.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_inuit.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_inuit.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_roman.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_roman.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_romanian.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_romanian.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_russian.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_russian.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_symbol.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_symbol.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_thai.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_thai.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_turkish.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_turkish.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_ukrainian.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_ukrainian.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1250.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1250.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1251.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1251.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1252.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1252.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1253.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1253.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1254.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1254.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1255.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1255.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1256.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1256.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1257.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1257.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1258.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1258.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_874.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_874.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_932.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_932.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_936.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_936.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_949.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_949.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_950.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_950.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_definitions.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_error.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_error.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_extern.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_libcerror.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_scsu.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_scsu.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_support.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_support.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_types.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_unicode_character.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_unicode_character.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_unused.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_url_stream.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_url_stream.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_utf16_stream.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_utf16_stream.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_utf16_string.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_utf16_string.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_utf32_stream.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_utf32_stream.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_utf32_string.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_utf32_string.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_utf7_stream.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_utf7_stream.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_utf8_stream.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_utf8_stream.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_utf8_string.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_utf8_string.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/ltmain.sh +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/m4/common.m4 +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/m4/gettext.m4 +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/m4/host-cpu-c-abi.m4 +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/m4/iconv.m4 +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/m4/intlmacosx.m4 +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/m4/lib-ld.m4 +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/m4/lib-link.m4 +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/m4/lib-prefix.m4 +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/m4/libcdata.m4 +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/m4/libcerror.m4 +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/m4/libcnotify.m4 +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/m4/libcthreads.m4 +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/m4/libfdatetime.m4 +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/m4/libfguid.m4 +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/m4/libfvalue.m4 +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/m4/libtool.m4 +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/m4/libuna.m4 +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/m4/ltoptions.m4 +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/m4/ltsugar.m4 +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/m4/ltversion.m4 +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/m4/lt~obsolete.m4 +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/m4/nls.m4 +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/m4/po.m4 +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/m4/progtest.m4 +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/m4/pthread.m4 +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/m4/python.m4 +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/m4/tests.m4 +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/m4/types.m4 +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/manuals/Makefile.am +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/manuals/Makefile.in +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/missing +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/msvscpp/fwevt_test_channel/fwevt_test_channel.vcproj +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/msvscpp/fwevt_test_error/fwevt_test_error.vcproj +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/msvscpp/fwevt_test_event/fwevt_test_event.vcproj +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/msvscpp/fwevt_test_keyword/fwevt_test_keyword.vcproj +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/msvscpp/fwevt_test_level/fwevt_test_level.vcproj +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/msvscpp/fwevt_test_manifest/fwevt_test_manifest.vcproj +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/msvscpp/fwevt_test_map/fwevt_test_map.vcproj +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/msvscpp/fwevt_test_opcode/fwevt_test_opcode.vcproj +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/msvscpp/fwevt_test_provider/fwevt_test_provider.vcproj +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/msvscpp/fwevt_test_support/fwevt_test_support.vcproj +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/msvscpp/fwevt_test_task/fwevt_test_task.vcproj +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/msvscpp/fwevt_test_template/fwevt_test_template.vcproj +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/msvscpp/fwevt_test_xml_document/fwevt_test_xml_document.vcproj +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/msvscpp/fwevt_test_xml_tag/fwevt_test_xml_tag.vcproj +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/msvscpp/fwevt_test_xml_template_value/fwevt_test_xml_template_value.vcproj +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/msvscpp/fwevt_test_xml_token/fwevt_test_xml_token.vcproj +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/msvscpp/libcdata/libcdata.vcproj +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/msvscpp/libcerror/libcerror.vcproj +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/msvscpp/libcnotify/libcnotify.vcproj +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/msvscpp/libcthreads/libcthreads.vcproj +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/msvscpp/libfdatetime/libfdatetime.vcproj +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/msvscpp/libfguid/libfguid.vcproj +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/msvscpp/libfvalue/libfvalue.vcproj +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/msvscpp/libuna/libuna.vcproj +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/ossfuzz/Makefile.am +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/ossfuzz/Makefile.in +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/ossfuzz/manifest_fuzzer.cc +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/ossfuzz/ossfuzz_libfwevt.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/ossfuzz/xml_document_fuzzer.cc +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/po/ChangeLog +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/po/Makefile.in.in +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/po/Makevars +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/po/Makevars.in +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/po/POTFILES.in +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/po/Rules-quot +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/po/boldquot.sed +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/po/en@boldquot.header +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/po/en@quot.header +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/po/insert-header.sin +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/po/quot.sed +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/po/remove-potcdate.sin +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_channels.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_channels.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_error.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_error.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_event.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_event.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_events.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_events.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_guid.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_guid.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_integer.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_integer.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_keyword.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_keyword.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_keywords.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_keywords.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_level.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_level.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_levels.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_levels.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_libcerror.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_libfguid.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_libfwevt.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_manifest.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_manifest.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_map.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_map.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_maps.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_maps.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_opcode.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_opcode.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_opcodes.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_opcodes.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_provider.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_provider.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_providers.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_providers.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_python.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_task.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_task.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_tasks.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_tasks.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_templates.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_templates.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_unused.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/pyproject.toml +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/setup.cfg.in +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/setup.py +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/test-driver +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_channel.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_error.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_event.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_keyword.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_level.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_libcerror.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_libcnotify.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_libfvalue.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_libfwevt.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_libuna.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_macros.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_manifest.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_map.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_memory.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_memory.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_opcode.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_provider.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_support.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_task.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_unused.h +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_xml_document.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_xml_tag.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_xml_template_value.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_xml_token.c +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/tests/pyfwevt_test_manifest.py +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/tests/pyfwevt_test_provider.py +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/tests/pyfwevt_test_support.py +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/tests/test_manpage.sh +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/tests/test_python_module.sh +0 -0
- {libfwevt-20231119 → libfwevt-20231230}/tests/test_runner.sh +0 -0
|
@@ -368,7 +368,7 @@
|
|
|
368
368
|
#define PACKAGE_NAME "libfwevt"
|
|
369
369
|
|
|
370
370
|
/* Define to the full name and version of this package. */
|
|
371
|
-
#define PACKAGE_STRING "libfwevt
|
|
371
|
+
#define PACKAGE_STRING "libfwevt 20231230"
|
|
372
372
|
|
|
373
373
|
/* Define to the one symbol short name of this package. */
|
|
374
374
|
#define PACKAGE_TARNAME "libfwevt"
|
|
@@ -377,7 +377,7 @@
|
|
|
377
377
|
#define PACKAGE_URL ""
|
|
378
378
|
|
|
379
379
|
/* Define to the version of this package. */
|
|
380
|
-
#define PACKAGE_VERSION "
|
|
380
|
+
#define PACKAGE_VERSION "20231230"
|
|
381
381
|
|
|
382
382
|
/* The size of `int', as computed by sizeof. */
|
|
383
383
|
#define SIZEOF_INT 4
|
|
@@ -403,7 +403,7 @@
|
|
|
403
403
|
/* #undef STRERROR_R_CHAR_P */
|
|
404
404
|
|
|
405
405
|
/* Version number of package */
|
|
406
|
-
#define VERSION "
|
|
406
|
+
#define VERSION "20231230"
|
|
407
407
|
|
|
408
408
|
/* Number of bits in a file offset, on hosts where this is settable. */
|
|
409
409
|
/* #undef _FILE_OFFSET_BITS */
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#! /bin/sh
|
|
2
2
|
# Guess values for system-dependent variables and create Makefiles.
|
|
3
|
-
# Generated by GNU Autoconf 2.71 for libfwevt
|
|
3
|
+
# Generated by GNU Autoconf 2.71 for libfwevt 20231230.
|
|
4
4
|
#
|
|
5
5
|
# Report bugs to <joachim.metz@gmail.com>.
|
|
6
6
|
#
|
|
@@ -621,8 +621,8 @@ MAKEFLAGS=
|
|
|
621
621
|
# Identity of this package.
|
|
622
622
|
PACKAGE_NAME='libfwevt'
|
|
623
623
|
PACKAGE_TARNAME='libfwevt'
|
|
624
|
-
PACKAGE_VERSION='
|
|
625
|
-
PACKAGE_STRING='libfwevt
|
|
624
|
+
PACKAGE_VERSION='20231230'
|
|
625
|
+
PACKAGE_STRING='libfwevt 20231230'
|
|
626
626
|
PACKAGE_BUGREPORT='joachim.metz@gmail.com'
|
|
627
627
|
PACKAGE_URL=''
|
|
628
628
|
|
|
@@ -1556,7 +1556,7 @@ if test "$ac_init_help" = "long"; then
|
|
|
1556
1556
|
# Omit some internal or obsolete options to make the list less imposing.
|
|
1557
1557
|
# This message is too long to be a string in the A/UX 3.1 sh.
|
|
1558
1558
|
cat <<_ACEOF
|
|
1559
|
-
\`configure' configures libfwevt
|
|
1559
|
+
\`configure' configures libfwevt 20231230 to adapt to many kinds of systems.
|
|
1560
1560
|
|
|
1561
1561
|
Usage: $0 [OPTION]... [VAR=VALUE]...
|
|
1562
1562
|
|
|
@@ -1627,7 +1627,7 @@ fi
|
|
|
1627
1627
|
|
|
1628
1628
|
if test -n "$ac_init_help"; then
|
|
1629
1629
|
case $ac_init_help in
|
|
1630
|
-
short | recursive ) echo "Configuration of libfwevt
|
|
1630
|
+
short | recursive ) echo "Configuration of libfwevt 20231230:";;
|
|
1631
1631
|
esac
|
|
1632
1632
|
cat <<\_ACEOF
|
|
1633
1633
|
|
|
@@ -1826,7 +1826,7 @@ fi
|
|
|
1826
1826
|
test -n "$ac_init_help" && exit $ac_status
|
|
1827
1827
|
if $ac_init_version; then
|
|
1828
1828
|
cat <<\_ACEOF
|
|
1829
|
-
libfwevt configure
|
|
1829
|
+
libfwevt configure 20231230
|
|
1830
1830
|
generated by GNU Autoconf 2.71
|
|
1831
1831
|
|
|
1832
1832
|
Copyright (C) 2021 Free Software Foundation, Inc.
|
|
@@ -2547,7 +2547,7 @@ cat >config.log <<_ACEOF
|
|
|
2547
2547
|
This file contains any messages produced by compilers while
|
|
2548
2548
|
running configure, to aid debugging if configure makes a mistake.
|
|
2549
2549
|
|
|
2550
|
-
It was created by libfwevt $as_me
|
|
2550
|
+
It was created by libfwevt $as_me 20231230, which was
|
|
2551
2551
|
generated by GNU Autoconf 2.71. Invocation command line was
|
|
2552
2552
|
|
|
2553
2553
|
$ $0$ac_configure_args_raw
|
|
@@ -4036,7 +4036,7 @@ fi
|
|
|
4036
4036
|
|
|
4037
4037
|
# Define the identity of the package.
|
|
4038
4038
|
PACKAGE='libfwevt'
|
|
4039
|
-
VERSION='
|
|
4039
|
+
VERSION='20231230'
|
|
4040
4040
|
|
|
4041
4041
|
|
|
4042
4042
|
printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h
|
|
@@ -48619,7 +48619,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
|
|
48619
48619
|
# report actual input values of CONFIG_FILES etc. instead of their
|
|
48620
48620
|
# values after options handling.
|
|
48621
48621
|
ac_log="
|
|
48622
|
-
This file was extended by libfwevt $as_me
|
|
48622
|
+
This file was extended by libfwevt $as_me 20231230, which was
|
|
48623
48623
|
generated by GNU Autoconf 2.71. Invocation command line was
|
|
48624
48624
|
|
|
48625
48625
|
CONFIG_FILES = $CONFIG_FILES
|
|
@@ -48687,7 +48687,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
|
|
|
48687
48687
|
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
|
48688
48688
|
ac_cs_config='$ac_cs_config_escaped'
|
|
48689
48689
|
ac_cs_version="\\
|
|
48690
|
-
libfwevt config.status
|
|
48690
|
+
libfwevt config.status 20231230
|
|
48691
48691
|
configured by $0, generated by GNU Autoconf 2.71,
|
|
48692
48692
|
with options \\"\$ac_cs_config\\"
|
|
48693
48693
|
|
|
@@ -24,11 +24,11 @@
|
|
|
24
24
|
|
|
25
25
|
#include <libfwevt/types.h>
|
|
26
26
|
|
|
27
|
-
#define LIBFWEVT_VERSION
|
|
27
|
+
#define LIBFWEVT_VERSION 20231230
|
|
28
28
|
|
|
29
29
|
/* The version string
|
|
30
30
|
*/
|
|
31
|
-
#define LIBFWEVT_VERSION_STRING "
|
|
31
|
+
#define LIBFWEVT_VERSION_STRING "20231230"
|
|
32
32
|
|
|
33
33
|
/* The byte order definitions
|
|
34
34
|
*/
|
|
@@ -211,6 +211,7 @@ typedef intptr_t libfwevt_opcode_t;
|
|
|
211
211
|
typedef intptr_t libfwevt_provider_t;
|
|
212
212
|
typedef intptr_t libfwevt_task_t;
|
|
213
213
|
typedef intptr_t libfwevt_template_t;
|
|
214
|
+
typedef intptr_t libfwevt_template_item_t;
|
|
214
215
|
typedef intptr_t libfwevt_xml_document_t;
|
|
215
216
|
typedef intptr_t libfwevt_xml_tag_t;
|
|
216
217
|
typedef intptr_t libfwevt_xml_template_value_t;
|
|
@@ -211,6 +211,7 @@ typedef intptr_t libfwevt_opcode_t;
|
|
|
211
211
|
typedef intptr_t libfwevt_provider_t;
|
|
212
212
|
typedef intptr_t libfwevt_task_t;
|
|
213
213
|
typedef intptr_t libfwevt_template_t;
|
|
214
|
+
typedef intptr_t libfwevt_template_item_t;
|
|
214
215
|
typedef intptr_t libfwevt_xml_document_t;
|
|
215
216
|
typedef intptr_t libfwevt_xml_tag_t;
|
|
216
217
|
typedef intptr_t libfwevt_xml_template_value_t;
|
|
@@ -136,6 +136,53 @@ int libfwevt_channel_free(
|
|
|
136
136
|
libfwevt_channel_t **channel,
|
|
137
137
|
libfwevt_error_t **error );
|
|
138
138
|
|
|
139
|
+
/* Retrieves the identifier
|
|
140
|
+
* Returns 1 if successful or -1 on error
|
|
141
|
+
*/
|
|
142
|
+
LIBFWEVT_EXTERN \
|
|
143
|
+
int libfwevt_channel_get_identifier(
|
|
144
|
+
libfwevt_channel_t *channel,
|
|
145
|
+
uint32_t *identifier,
|
|
146
|
+
libfwevt_error_t **error );
|
|
147
|
+
|
|
148
|
+
/* Retrieves the size of the UTF-8 formatted name
|
|
149
|
+
* Returns 1 if successful, 0 if not available or -1 on error
|
|
150
|
+
*/
|
|
151
|
+
LIBFWEVT_EXTERN \
|
|
152
|
+
int libfwevt_channel_get_utf8_name_size(
|
|
153
|
+
libfwevt_channel_t *channel,
|
|
154
|
+
size_t *utf8_string_size,
|
|
155
|
+
libfwevt_error_t **error );
|
|
156
|
+
|
|
157
|
+
/* Retrieves the UTF-8 formatted name
|
|
158
|
+
* Returns 1 if successful, 0 if not available or -1 on error
|
|
159
|
+
*/
|
|
160
|
+
LIBFWEVT_EXTERN \
|
|
161
|
+
int libfwevt_channel_get_utf8_name(
|
|
162
|
+
libfwevt_channel_t *channel,
|
|
163
|
+
uint8_t *utf8_string,
|
|
164
|
+
size_t utf8_string_size,
|
|
165
|
+
libfwevt_error_t **error );
|
|
166
|
+
|
|
167
|
+
/* Retrieves the size of the UTF-16 formatted name
|
|
168
|
+
* Returns 1 if successful, 0 if not available or -1 on error
|
|
169
|
+
*/
|
|
170
|
+
LIBFWEVT_EXTERN \
|
|
171
|
+
int libfwevt_channel_get_utf16_name_size(
|
|
172
|
+
libfwevt_channel_t *channel,
|
|
173
|
+
size_t *utf16_string_size,
|
|
174
|
+
libfwevt_error_t **error );
|
|
175
|
+
|
|
176
|
+
/* Retrieves the UTF-16 formatted name
|
|
177
|
+
* Returns 1 if successful, 0 if not available or -1 on error
|
|
178
|
+
*/
|
|
179
|
+
LIBFWEVT_EXTERN \
|
|
180
|
+
int libfwevt_channel_get_utf16_name(
|
|
181
|
+
libfwevt_channel_t *channel,
|
|
182
|
+
uint16_t *utf16_string,
|
|
183
|
+
size_t utf16_string_size,
|
|
184
|
+
libfwevt_error_t **error );
|
|
185
|
+
|
|
139
186
|
/* -------------------------------------------------------------------------
|
|
140
187
|
* Event functions
|
|
141
188
|
* ------------------------------------------------------------------------- */
|
|
@@ -213,7 +260,7 @@ int libfwevt_level_free(
|
|
|
213
260
|
* ------------------------------------------------------------------------- */
|
|
214
261
|
|
|
215
262
|
/* Creates a manifest
|
|
216
|
-
* Make sure the value
|
|
263
|
+
* Make sure the value manifest is referencing, is set to NULL
|
|
217
264
|
* Returns 1 if successful or -1 on error
|
|
218
265
|
*/
|
|
219
266
|
LIBFWEVT_EXTERN \
|
|
@@ -597,12 +644,110 @@ int libfwevt_template_get_size(
|
|
|
597
644
|
uint32_t *size,
|
|
598
645
|
libfwevt_error_t **error );
|
|
599
646
|
|
|
647
|
+
/* Retrieves the identifier
|
|
648
|
+
* The identifier is a GUID stored in little-endian and is 16 bytes of size
|
|
649
|
+
* Returns 1 if successful, 0 if value is not available or -1 on error
|
|
650
|
+
*/
|
|
651
|
+
LIBFWEVT_EXTERN \
|
|
652
|
+
int libfwevt_template_get_identifier(
|
|
653
|
+
libfwevt_template_t *wevt_template,
|
|
654
|
+
uint8_t *guid_data,
|
|
655
|
+
size_t guid_data_size,
|
|
656
|
+
libfwevt_error_t **error );
|
|
657
|
+
|
|
658
|
+
/* Retrieves the number of items
|
|
659
|
+
* Returns 1 if successful or -1 on error
|
|
660
|
+
*/
|
|
661
|
+
LIBFWEVT_EXTERN \
|
|
662
|
+
int libfwevt_template_get_number_of_items(
|
|
663
|
+
libfwevt_template_t *wevt_template,
|
|
664
|
+
int *number_of_items,
|
|
665
|
+
libfwevt_error_t **error );
|
|
666
|
+
|
|
667
|
+
/* Retrieves a specific item
|
|
668
|
+
* Returns 1 if successful or -1 on error
|
|
669
|
+
*/
|
|
670
|
+
LIBFWEVT_EXTERN \
|
|
671
|
+
int libfwevt_template_get_item_by_index(
|
|
672
|
+
libfwevt_template_t *wevt_template,
|
|
673
|
+
int item_index,
|
|
674
|
+
libfwevt_template_item_t **item,
|
|
675
|
+
libfwevt_error_t **error );
|
|
676
|
+
|
|
677
|
+
/* -------------------------------------------------------------------------
|
|
678
|
+
* Template item functions
|
|
679
|
+
* ------------------------------------------------------------------------- */
|
|
680
|
+
|
|
681
|
+
/* Frees a template item
|
|
682
|
+
* Returns 1 if successful or -1 on error
|
|
683
|
+
*/
|
|
684
|
+
LIBFWEVT_EXTERN \
|
|
685
|
+
int libfwevt_template_item_free(
|
|
686
|
+
libfwevt_template_item_t **template_item,
|
|
687
|
+
libfwevt_error_t **error );
|
|
688
|
+
|
|
689
|
+
/* Retrieves the input data type
|
|
690
|
+
* Returns 1 if successful or -1 on error
|
|
691
|
+
*/
|
|
692
|
+
LIBFWEVT_EXTERN \
|
|
693
|
+
int libfwevt_template_item_get_input_data_type(
|
|
694
|
+
libfwevt_template_item_t *template_item,
|
|
695
|
+
uint8_t *input_data_type,
|
|
696
|
+
libfwevt_error_t **error );
|
|
697
|
+
|
|
698
|
+
/* Retrieves the output data type
|
|
699
|
+
* Returns 1 if successful or -1 on error
|
|
700
|
+
*/
|
|
701
|
+
LIBFWEVT_EXTERN \
|
|
702
|
+
int libfwevt_template_item_get_output_data_type(
|
|
703
|
+
libfwevt_template_item_t *template_item,
|
|
704
|
+
uint8_t *output_data_type,
|
|
705
|
+
libfwevt_error_t **error );
|
|
706
|
+
|
|
707
|
+
/* Retrieves the size of the UTF-8 formatted name
|
|
708
|
+
* Returns 1 if successful, 0 if not available or -1 on error
|
|
709
|
+
*/
|
|
710
|
+
LIBFWEVT_EXTERN \
|
|
711
|
+
int libfwevt_template_item_get_utf8_name_size(
|
|
712
|
+
libfwevt_template_item_t *template_item,
|
|
713
|
+
size_t *utf8_string_size,
|
|
714
|
+
libfwevt_error_t **error );
|
|
715
|
+
|
|
716
|
+
/* Retrieves the UTF-8 formatted name
|
|
717
|
+
* Returns 1 if successful, 0 if not available or -1 on error
|
|
718
|
+
*/
|
|
719
|
+
LIBFWEVT_EXTERN \
|
|
720
|
+
int libfwevt_template_item_get_utf8_name(
|
|
721
|
+
libfwevt_template_item_t *template_item,
|
|
722
|
+
uint8_t *utf8_string,
|
|
723
|
+
size_t utf8_string_size,
|
|
724
|
+
libfwevt_error_t **error );
|
|
725
|
+
|
|
726
|
+
/* Retrieves the size of the UTF-16 formatted name
|
|
727
|
+
* Returns 1 if successful, 0 if not available or -1 on error
|
|
728
|
+
*/
|
|
729
|
+
LIBFWEVT_EXTERN \
|
|
730
|
+
int libfwevt_template_item_get_utf16_name_size(
|
|
731
|
+
libfwevt_template_item_t *template_item,
|
|
732
|
+
size_t *utf16_string_size,
|
|
733
|
+
libfwevt_error_t **error );
|
|
734
|
+
|
|
735
|
+
/* Retrieves the UTF-16 formatted name
|
|
736
|
+
* Returns 1 if successful, 0 if not available or -1 on error
|
|
737
|
+
*/
|
|
738
|
+
LIBFWEVT_EXTERN \
|
|
739
|
+
int libfwevt_template_item_get_utf16_name(
|
|
740
|
+
libfwevt_template_item_t *template_item,
|
|
741
|
+
uint16_t *utf16_string,
|
|
742
|
+
size_t utf16_string_size,
|
|
743
|
+
libfwevt_error_t **error );
|
|
744
|
+
|
|
600
745
|
/* -------------------------------------------------------------------------
|
|
601
746
|
* XML document functions
|
|
602
747
|
* ------------------------------------------------------------------------- */
|
|
603
748
|
|
|
604
749
|
/* Creates an XML document
|
|
605
|
-
* Make sure the value
|
|
750
|
+
* Make sure the value xml_document is referencing, is set to NULL
|
|
606
751
|
* Returns 1 if successful or -1 on error
|
|
607
752
|
*/
|
|
608
753
|
LIBFWEVT_EXTERN \
|
|
@@ -136,6 +136,53 @@ int libfwevt_channel_free(
|
|
|
136
136
|
libfwevt_channel_t **channel,
|
|
137
137
|
libfwevt_error_t **error );
|
|
138
138
|
|
|
139
|
+
/* Retrieves the identifier
|
|
140
|
+
* Returns 1 if successful or -1 on error
|
|
141
|
+
*/
|
|
142
|
+
LIBFWEVT_EXTERN \
|
|
143
|
+
int libfwevt_channel_get_identifier(
|
|
144
|
+
libfwevt_channel_t *channel,
|
|
145
|
+
uint32_t *identifier,
|
|
146
|
+
libfwevt_error_t **error );
|
|
147
|
+
|
|
148
|
+
/* Retrieves the size of the UTF-8 formatted name
|
|
149
|
+
* Returns 1 if successful, 0 if not available or -1 on error
|
|
150
|
+
*/
|
|
151
|
+
LIBFWEVT_EXTERN \
|
|
152
|
+
int libfwevt_channel_get_utf8_name_size(
|
|
153
|
+
libfwevt_channel_t *channel,
|
|
154
|
+
size_t *utf8_string_size,
|
|
155
|
+
libfwevt_error_t **error );
|
|
156
|
+
|
|
157
|
+
/* Retrieves the UTF-8 formatted name
|
|
158
|
+
* Returns 1 if successful, 0 if not available or -1 on error
|
|
159
|
+
*/
|
|
160
|
+
LIBFWEVT_EXTERN \
|
|
161
|
+
int libfwevt_channel_get_utf8_name(
|
|
162
|
+
libfwevt_channel_t *channel,
|
|
163
|
+
uint8_t *utf8_string,
|
|
164
|
+
size_t utf8_string_size,
|
|
165
|
+
libfwevt_error_t **error );
|
|
166
|
+
|
|
167
|
+
/* Retrieves the size of the UTF-16 formatted name
|
|
168
|
+
* Returns 1 if successful, 0 if not available or -1 on error
|
|
169
|
+
*/
|
|
170
|
+
LIBFWEVT_EXTERN \
|
|
171
|
+
int libfwevt_channel_get_utf16_name_size(
|
|
172
|
+
libfwevt_channel_t *channel,
|
|
173
|
+
size_t *utf16_string_size,
|
|
174
|
+
libfwevt_error_t **error );
|
|
175
|
+
|
|
176
|
+
/* Retrieves the UTF-16 formatted name
|
|
177
|
+
* Returns 1 if successful, 0 if not available or -1 on error
|
|
178
|
+
*/
|
|
179
|
+
LIBFWEVT_EXTERN \
|
|
180
|
+
int libfwevt_channel_get_utf16_name(
|
|
181
|
+
libfwevt_channel_t *channel,
|
|
182
|
+
uint16_t *utf16_string,
|
|
183
|
+
size_t utf16_string_size,
|
|
184
|
+
libfwevt_error_t **error );
|
|
185
|
+
|
|
139
186
|
/* -------------------------------------------------------------------------
|
|
140
187
|
* Event functions
|
|
141
188
|
* ------------------------------------------------------------------------- */
|
|
@@ -213,7 +260,7 @@ int libfwevt_level_free(
|
|
|
213
260
|
* ------------------------------------------------------------------------- */
|
|
214
261
|
|
|
215
262
|
/* Creates a manifest
|
|
216
|
-
* Make sure the value
|
|
263
|
+
* Make sure the value manifest is referencing, is set to NULL
|
|
217
264
|
* Returns 1 if successful or -1 on error
|
|
218
265
|
*/
|
|
219
266
|
LIBFWEVT_EXTERN \
|
|
@@ -597,12 +644,110 @@ int libfwevt_template_get_size(
|
|
|
597
644
|
uint32_t *size,
|
|
598
645
|
libfwevt_error_t **error );
|
|
599
646
|
|
|
647
|
+
/* Retrieves the identifier
|
|
648
|
+
* The identifier is a GUID stored in little-endian and is 16 bytes of size
|
|
649
|
+
* Returns 1 if successful, 0 if value is not available or -1 on error
|
|
650
|
+
*/
|
|
651
|
+
LIBFWEVT_EXTERN \
|
|
652
|
+
int libfwevt_template_get_identifier(
|
|
653
|
+
libfwevt_template_t *wevt_template,
|
|
654
|
+
uint8_t *guid_data,
|
|
655
|
+
size_t guid_data_size,
|
|
656
|
+
libfwevt_error_t **error );
|
|
657
|
+
|
|
658
|
+
/* Retrieves the number of items
|
|
659
|
+
* Returns 1 if successful or -1 on error
|
|
660
|
+
*/
|
|
661
|
+
LIBFWEVT_EXTERN \
|
|
662
|
+
int libfwevt_template_get_number_of_items(
|
|
663
|
+
libfwevt_template_t *wevt_template,
|
|
664
|
+
int *number_of_items,
|
|
665
|
+
libfwevt_error_t **error );
|
|
666
|
+
|
|
667
|
+
/* Retrieves a specific item
|
|
668
|
+
* Returns 1 if successful or -1 on error
|
|
669
|
+
*/
|
|
670
|
+
LIBFWEVT_EXTERN \
|
|
671
|
+
int libfwevt_template_get_item_by_index(
|
|
672
|
+
libfwevt_template_t *wevt_template,
|
|
673
|
+
int item_index,
|
|
674
|
+
libfwevt_template_item_t **item,
|
|
675
|
+
libfwevt_error_t **error );
|
|
676
|
+
|
|
677
|
+
/* -------------------------------------------------------------------------
|
|
678
|
+
* Template item functions
|
|
679
|
+
* ------------------------------------------------------------------------- */
|
|
680
|
+
|
|
681
|
+
/* Frees a template item
|
|
682
|
+
* Returns 1 if successful or -1 on error
|
|
683
|
+
*/
|
|
684
|
+
LIBFWEVT_EXTERN \
|
|
685
|
+
int libfwevt_template_item_free(
|
|
686
|
+
libfwevt_template_item_t **template_item,
|
|
687
|
+
libfwevt_error_t **error );
|
|
688
|
+
|
|
689
|
+
/* Retrieves the input data type
|
|
690
|
+
* Returns 1 if successful or -1 on error
|
|
691
|
+
*/
|
|
692
|
+
LIBFWEVT_EXTERN \
|
|
693
|
+
int libfwevt_template_item_get_input_data_type(
|
|
694
|
+
libfwevt_template_item_t *template_item,
|
|
695
|
+
uint8_t *input_data_type,
|
|
696
|
+
libfwevt_error_t **error );
|
|
697
|
+
|
|
698
|
+
/* Retrieves the output data type
|
|
699
|
+
* Returns 1 if successful or -1 on error
|
|
700
|
+
*/
|
|
701
|
+
LIBFWEVT_EXTERN \
|
|
702
|
+
int libfwevt_template_item_get_output_data_type(
|
|
703
|
+
libfwevt_template_item_t *template_item,
|
|
704
|
+
uint8_t *output_data_type,
|
|
705
|
+
libfwevt_error_t **error );
|
|
706
|
+
|
|
707
|
+
/* Retrieves the size of the UTF-8 formatted name
|
|
708
|
+
* Returns 1 if successful, 0 if not available or -1 on error
|
|
709
|
+
*/
|
|
710
|
+
LIBFWEVT_EXTERN \
|
|
711
|
+
int libfwevt_template_item_get_utf8_name_size(
|
|
712
|
+
libfwevt_template_item_t *template_item,
|
|
713
|
+
size_t *utf8_string_size,
|
|
714
|
+
libfwevt_error_t **error );
|
|
715
|
+
|
|
716
|
+
/* Retrieves the UTF-8 formatted name
|
|
717
|
+
* Returns 1 if successful, 0 if not available or -1 on error
|
|
718
|
+
*/
|
|
719
|
+
LIBFWEVT_EXTERN \
|
|
720
|
+
int libfwevt_template_item_get_utf8_name(
|
|
721
|
+
libfwevt_template_item_t *template_item,
|
|
722
|
+
uint8_t *utf8_string,
|
|
723
|
+
size_t utf8_string_size,
|
|
724
|
+
libfwevt_error_t **error );
|
|
725
|
+
|
|
726
|
+
/* Retrieves the size of the UTF-16 formatted name
|
|
727
|
+
* Returns 1 if successful, 0 if not available or -1 on error
|
|
728
|
+
*/
|
|
729
|
+
LIBFWEVT_EXTERN \
|
|
730
|
+
int libfwevt_template_item_get_utf16_name_size(
|
|
731
|
+
libfwevt_template_item_t *template_item,
|
|
732
|
+
size_t *utf16_string_size,
|
|
733
|
+
libfwevt_error_t **error );
|
|
734
|
+
|
|
735
|
+
/* Retrieves the UTF-16 formatted name
|
|
736
|
+
* Returns 1 if successful, 0 if not available or -1 on error
|
|
737
|
+
*/
|
|
738
|
+
LIBFWEVT_EXTERN \
|
|
739
|
+
int libfwevt_template_item_get_utf16_name(
|
|
740
|
+
libfwevt_template_item_t *template_item,
|
|
741
|
+
uint16_t *utf16_string,
|
|
742
|
+
size_t utf16_string_size,
|
|
743
|
+
libfwevt_error_t **error );
|
|
744
|
+
|
|
600
745
|
/* -------------------------------------------------------------------------
|
|
601
746
|
* XML document functions
|
|
602
747
|
* ------------------------------------------------------------------------- */
|
|
603
748
|
|
|
604
749
|
/* Creates an XML document
|
|
605
|
-
* Make sure the value
|
|
750
|
+
* Make sure the value xml_document is referencing, is set to NULL
|
|
606
751
|
* Returns 1 if successful or -1 on error
|
|
607
752
|
*/
|
|
608
753
|
LIBFWEVT_EXTERN \
|
|
@@ -39,6 +39,7 @@ libfwevt_la_SOURCES = \
|
|
|
39
39
|
libfwevt_support.c libfwevt_support.h \
|
|
40
40
|
libfwevt_task.c libfwevt_task.h \
|
|
41
41
|
libfwevt_template.c libfwevt_template.h \
|
|
42
|
+
libfwevt_template_item.c libfwevt_template_item.h \
|
|
42
43
|
libfwevt_types.h \
|
|
43
44
|
libfwevt_unused.h \
|
|
44
45
|
libfwevt_xml_document.c libfwevt_xml_document.h \
|
|
@@ -148,9 +148,9 @@ am_libfwevt_la_OBJECTS = libfwevt.lo libfwevt_channel.lo \
|
|
|
148
148
|
libfwevt_keyword.lo libfwevt_level.lo libfwevt_manifest.lo \
|
|
149
149
|
libfwevt_map.lo libfwevt_notify.lo libfwevt_opcode.lo \
|
|
150
150
|
libfwevt_provider.lo libfwevt_support.lo libfwevt_task.lo \
|
|
151
|
-
libfwevt_template.lo
|
|
152
|
-
|
|
153
|
-
libfwevt_xml_token.lo
|
|
151
|
+
libfwevt_template.lo libfwevt_template_item.lo \
|
|
152
|
+
libfwevt_xml_document.lo libfwevt_xml_tag.lo \
|
|
153
|
+
libfwevt_xml_template_value.lo libfwevt_xml_token.lo
|
|
154
154
|
libfwevt_la_OBJECTS = $(am_libfwevt_la_OBJECTS)
|
|
155
155
|
AM_V_lt = $(am__v_lt_@AM_V@)
|
|
156
156
|
am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
|
|
@@ -186,6 +186,7 @@ am__depfiles_remade = ./$(DEPDIR)/libfwevt.Plo \
|
|
|
186
186
|
./$(DEPDIR)/libfwevt_provider.Plo \
|
|
187
187
|
./$(DEPDIR)/libfwevt_support.Plo ./$(DEPDIR)/libfwevt_task.Plo \
|
|
188
188
|
./$(DEPDIR)/libfwevt_template.Plo \
|
|
189
|
+
./$(DEPDIR)/libfwevt_template_item.Plo \
|
|
189
190
|
./$(DEPDIR)/libfwevt_xml_document.Plo \
|
|
190
191
|
./$(DEPDIR)/libfwevt_xml_tag.Plo \
|
|
191
192
|
./$(DEPDIR)/libfwevt_xml_template_value.Plo \
|
|
@@ -530,6 +531,7 @@ libfwevt_la_SOURCES = \
|
|
|
530
531
|
libfwevt_support.c libfwevt_support.h \
|
|
531
532
|
libfwevt_task.c libfwevt_task.h \
|
|
532
533
|
libfwevt_template.c libfwevt_template.h \
|
|
534
|
+
libfwevt_template_item.c libfwevt_template_item.h \
|
|
533
535
|
libfwevt_types.h \
|
|
534
536
|
libfwevt_unused.h \
|
|
535
537
|
libfwevt_xml_document.c libfwevt_xml_document.h \
|
|
@@ -654,6 +656,7 @@ distclean-compile:
|
|
|
654
656
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfwevt_support.Plo@am__quote@ # am--include-marker
|
|
655
657
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfwevt_task.Plo@am__quote@ # am--include-marker
|
|
656
658
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfwevt_template.Plo@am__quote@ # am--include-marker
|
|
659
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfwevt_template_item.Plo@am__quote@ # am--include-marker
|
|
657
660
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfwevt_xml_document.Plo@am__quote@ # am--include-marker
|
|
658
661
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfwevt_xml_tag.Plo@am__quote@ # am--include-marker
|
|
659
662
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfwevt_xml_template_value.Plo@am__quote@ # am--include-marker
|
|
@@ -880,6 +883,7 @@ maintainer-clean: maintainer-clean-am
|
|
|
880
883
|
-rm -f ./$(DEPDIR)/libfwevt_support.Plo
|
|
881
884
|
-rm -f ./$(DEPDIR)/libfwevt_task.Plo
|
|
882
885
|
-rm -f ./$(DEPDIR)/libfwevt_template.Plo
|
|
886
|
+
-rm -f ./$(DEPDIR)/libfwevt_template_item.Plo
|
|
883
887
|
-rm -f ./$(DEPDIR)/libfwevt_xml_document.Plo
|
|
884
888
|
-rm -f ./$(DEPDIR)/libfwevt_xml_tag.Plo
|
|
885
889
|
-rm -f ./$(DEPDIR)/libfwevt_xml_template_value.Plo
|
|
@@ -137,10 +137,10 @@ struct fwevt_template_channel
|
|
|
137
137
|
*/
|
|
138
138
|
uint8_t identifier[ 4 ];
|
|
139
139
|
|
|
140
|
-
/* The
|
|
140
|
+
/* The name offset
|
|
141
141
|
* Consists of 4 bytes
|
|
142
142
|
*/
|
|
143
|
-
uint8_t
|
|
143
|
+
uint8_t name_offset[ 4 ];
|
|
144
144
|
|
|
145
145
|
/* Unknown
|
|
146
146
|
* Consists of 4 bytes
|
|
@@ -533,10 +533,10 @@ struct fwevt_template_header
|
|
|
533
533
|
*/
|
|
534
534
|
uint8_t number_of_names[ 4 ];
|
|
535
535
|
|
|
536
|
-
/* The
|
|
536
|
+
/* The template items offset
|
|
537
537
|
* Consists of 4 bytes
|
|
538
538
|
*/
|
|
539
|
-
uint8_t
|
|
539
|
+
uint8_t template_items_offset[ 4 ];
|
|
540
540
|
|
|
541
541
|
/* Unknown
|
|
542
542
|
* Consists of 4 bytes
|
|
@@ -22,12 +22,12 @@ BEGIN
|
|
|
22
22
|
BLOCK "040904E4"
|
|
23
23
|
BEGIN
|
|
24
24
|
VALUE "FileDescription", "Library to support the Windows XML Event Log (EVTX) data types\0"
|
|
25
|
-
VALUE "FileVersion", "
|
|
25
|
+
VALUE "FileVersion", "20231230" "\0"
|
|
26
26
|
VALUE "InternalName", "libfwevt.dll\0"
|
|
27
27
|
VALUE "LegalCopyright", "(C) 2011-2023, Joachim Metz <joachim.metz@gmail.com>\0"
|
|
28
28
|
VALUE "OriginalFilename", "libfwevt.dll\0"
|
|
29
29
|
VALUE "ProductName", "libfwevt\0"
|
|
30
|
-
VALUE "ProductVersion", "
|
|
30
|
+
VALUE "ProductVersion", "20231230" "\0"
|
|
31
31
|
VALUE "Comments", "For more information visit https://github.com/libyal/libfwevt/\0"
|
|
32
32
|
END
|
|
33
33
|
END
|