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.
Files changed (603) hide show
  1. {libfwevt-20231119 → libfwevt-20231230}/PKG-INFO +1 -1
  2. {libfwevt-20231119 → libfwevt-20231230}/common/config.h +3 -3
  3. {libfwevt-20231119 → libfwevt-20231230}/configure +10 -10
  4. {libfwevt-20231119 → libfwevt-20231230}/configure.ac +1 -1
  5. libfwevt-20231230/dpkg/changelog +5 -0
  6. {libfwevt-20231119 → libfwevt-20231230}/include/libfwevt/definitions.h +2 -2
  7. {libfwevt-20231119 → libfwevt-20231230}/include/libfwevt/types.h +1 -0
  8. {libfwevt-20231119 → libfwevt-20231230}/include/libfwevt/types.h.in +1 -0
  9. {libfwevt-20231119 → libfwevt-20231230}/include/libfwevt.h +147 -2
  10. {libfwevt-20231119 → libfwevt-20231230}/include/libfwevt.h.in +147 -2
  11. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/Makefile.am +1 -0
  12. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/Makefile.in +7 -3
  13. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/fwevt_template.h +4 -4
  14. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt.rc +2 -2
  15. libfwevt-20231230/libfwevt/libfwevt_channel.c +698 -0
  16. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_channel.h +40 -0
  17. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_definitions.h +2 -2
  18. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_level.c +3 -3
  19. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_opcode.c +1 -1
  20. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_task.c +5 -5
  21. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_template.c +279 -212
  22. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_template.h +32 -3
  23. libfwevt-20231230/libfwevt/libfwevt_template_item.c +779 -0
  24. libfwevt-20231230/libfwevt/libfwevt_template_item.h +125 -0
  25. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_types.h +2 -0
  26. {libfwevt-20231119 → libfwevt-20231230}/libfwevt.spec +2 -2
  27. {libfwevt-20231119 → libfwevt-20231230}/manuals/libfwevt.3 +33 -1
  28. {libfwevt-20231119 → libfwevt-20231230}/msvscpp/Makefile.am +2 -0
  29. {libfwevt-20231119 → libfwevt-20231230}/msvscpp/Makefile.in +2 -0
  30. libfwevt-20231230/msvscpp/fwevt_test_notify/fwevt_test_notify.vcproj +214 -0
  31. libfwevt-20231230/msvscpp/fwevt_test_template_item/fwevt_test_template_item.vcproj +222 -0
  32. {libfwevt-20231119 → libfwevt-20231230}/msvscpp/libfwevt/libfwevt.vcproj +8 -0
  33. {libfwevt-20231119 → libfwevt-20231230}/msvscpp/libfwevt.sln +66 -46
  34. {libfwevt-20231119 → libfwevt-20231230}/msvscpp/pyfwevt/pyfwevt.vcproj +18 -2
  35. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/Makefile.am +2 -0
  36. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/Makefile.in +27 -1
  37. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt.c +36 -0
  38. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_channel.c +199 -0
  39. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_channel.h +8 -0
  40. libfwevt-20231230/pyfwevt/pyfwevt_template.c +627 -0
  41. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_template.h +21 -0
  42. libfwevt-20231230/pyfwevt/pyfwevt_template_item.c +566 -0
  43. libfwevt-20231230/pyfwevt/pyfwevt_template_item.h +84 -0
  44. libfwevt-20231230/pyfwevt/pyfwevt_template_items.c +460 -0
  45. libfwevt-20231230/pyfwevt/pyfwevt_template_items.h +97 -0
  46. {libfwevt-20231119 → libfwevt-20231230}/setup.cfg +1 -1
  47. {libfwevt-20231119 → libfwevt-20231230}/tests/Makefile.am +25 -0
  48. {libfwevt-20231119 → libfwevt-20231230}/tests/Makefile.in +58 -9
  49. libfwevt-20231230/tests/fwevt_test_notify.c +229 -0
  50. {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_template.c +8 -8
  51. libfwevt-20231230/tests/fwevt_test_template_item.c +381 -0
  52. {libfwevt-20231119 → libfwevt-20231230}/tests/test_library.sh +1 -1
  53. libfwevt-20231119/dpkg/changelog +0 -5
  54. libfwevt-20231119/libfwevt/libfwevt_channel.c +0 -392
  55. libfwevt-20231119/pyfwevt/pyfwevt_template.c +0 -302
  56. {libfwevt-20231119 → libfwevt-20231230}/ABOUT-NLS +0 -0
  57. {libfwevt-20231119 → libfwevt-20231230}/AUTHORS +0 -0
  58. {libfwevt-20231119 → libfwevt-20231230}/COPYING +0 -0
  59. {libfwevt-20231119 → libfwevt-20231230}/COPYING.LESSER +0 -0
  60. {libfwevt-20231119 → libfwevt-20231230}/ChangeLog +0 -0
  61. {libfwevt-20231119 → libfwevt-20231230}/INSTALL +0 -0
  62. {libfwevt-20231119 → libfwevt-20231230}/Makefile.am +0 -0
  63. {libfwevt-20231119 → libfwevt-20231230}/Makefile.in +0 -0
  64. {libfwevt-20231119 → libfwevt-20231230}/NEWS +0 -0
  65. {libfwevt-20231119 → libfwevt-20231230}/README +0 -0
  66. {libfwevt-20231119 → libfwevt-20231230}/acinclude.m4 +0 -0
  67. {libfwevt-20231119 → libfwevt-20231230}/aclocal.m4 +0 -0
  68. {libfwevt-20231119 → libfwevt-20231230}/common/Makefile.am +0 -0
  69. {libfwevt-20231119 → libfwevt-20231230}/common/Makefile.in +0 -0
  70. {libfwevt-20231119 → libfwevt-20231230}/common/byte_stream.h +0 -0
  71. {libfwevt-20231119 → libfwevt-20231230}/common/common.h +0 -0
  72. {libfwevt-20231119 → libfwevt-20231230}/common/config.h.in +0 -0
  73. {libfwevt-20231119 → libfwevt-20231230}/common/config_borlandc.h +0 -0
  74. {libfwevt-20231119 → libfwevt-20231230}/common/config_msc.h +0 -0
  75. {libfwevt-20231119 → libfwevt-20231230}/common/config_winapi.h +0 -0
  76. {libfwevt-20231119 → libfwevt-20231230}/common/file_stream.h +0 -0
  77. {libfwevt-20231119 → libfwevt-20231230}/common/memory.h +0 -0
  78. {libfwevt-20231119 → libfwevt-20231230}/common/narrow_string.h +0 -0
  79. {libfwevt-20231119 → libfwevt-20231230}/common/system_string.h +0 -0
  80. {libfwevt-20231119 → libfwevt-20231230}/common/types.h +0 -0
  81. {libfwevt-20231119 → libfwevt-20231230}/common/types.h.in +0 -0
  82. {libfwevt-20231119 → libfwevt-20231230}/common/wide_string.h +0 -0
  83. {libfwevt-20231119 → libfwevt-20231230}/compile +0 -0
  84. {libfwevt-20231119 → libfwevt-20231230}/config.guess +0 -0
  85. {libfwevt-20231119 → libfwevt-20231230}/config.rpath +0 -0
  86. {libfwevt-20231119 → libfwevt-20231230}/config.sub +0 -0
  87. {libfwevt-20231119 → libfwevt-20231230}/depcomp +0 -0
  88. {libfwevt-20231119 → libfwevt-20231230}/dpkg/changelog.in +0 -0
  89. {libfwevt-20231119 → libfwevt-20231230}/dpkg/compat +0 -0
  90. {libfwevt-20231119 → libfwevt-20231230}/dpkg/control +0 -0
  91. {libfwevt-20231119 → libfwevt-20231230}/dpkg/copyright +0 -0
  92. {libfwevt-20231119 → libfwevt-20231230}/dpkg/libfwevt-dev.install +0 -0
  93. {libfwevt-20231119 → libfwevt-20231230}/dpkg/libfwevt-python3.install +0 -0
  94. {libfwevt-20231119 → libfwevt-20231230}/dpkg/libfwevt.install +0 -0
  95. {libfwevt-20231119 → libfwevt-20231230}/dpkg/rules +0 -0
  96. {libfwevt-20231119 → libfwevt-20231230}/dpkg/source/format +0 -0
  97. {libfwevt-20231119 → libfwevt-20231230}/include/Makefile.am +0 -0
  98. {libfwevt-20231119 → libfwevt-20231230}/include/Makefile.in +0 -0
  99. {libfwevt-20231119 → libfwevt-20231230}/include/libfwevt/definitions.h.in +0 -0
  100. {libfwevt-20231119 → libfwevt-20231230}/include/libfwevt/error.h +0 -0
  101. {libfwevt-20231119 → libfwevt-20231230}/include/libfwevt/extern.h +0 -0
  102. {libfwevt-20231119 → libfwevt-20231230}/include/libfwevt/features.h +0 -0
  103. {libfwevt-20231119 → libfwevt-20231230}/include/libfwevt/features.h.in +0 -0
  104. {libfwevt-20231119 → libfwevt-20231230}/install-sh +0 -0
  105. {libfwevt-20231119 → libfwevt-20231230}/libcdata/Makefile.am +0 -0
  106. {libfwevt-20231119 → libfwevt-20231230}/libcdata/Makefile.in +0 -0
  107. {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_array.c +0 -0
  108. {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_array.h +0 -0
  109. {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_btree.c +0 -0
  110. {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_btree.h +0 -0
  111. {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_btree_node.c +0 -0
  112. {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_btree_node.h +0 -0
  113. {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_btree_values_list.c +0 -0
  114. {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_btree_values_list.h +0 -0
  115. {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_definitions.h +0 -0
  116. {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_error.c +0 -0
  117. {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_error.h +0 -0
  118. {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_extern.h +0 -0
  119. {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_libcerror.h +0 -0
  120. {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_libcthreads.h +0 -0
  121. {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_list.c +0 -0
  122. {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_list.h +0 -0
  123. {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_list_element.c +0 -0
  124. {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_list_element.h +0 -0
  125. {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_range_list.c +0 -0
  126. {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_range_list.h +0 -0
  127. {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_range_list_value.c +0 -0
  128. {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_range_list_value.h +0 -0
  129. {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_support.c +0 -0
  130. {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_support.h +0 -0
  131. {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_tree_node.c +0 -0
  132. {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_tree_node.h +0 -0
  133. {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_types.h +0 -0
  134. {libfwevt-20231119 → libfwevt-20231230}/libcdata/libcdata_unused.h +0 -0
  135. {libfwevt-20231119 → libfwevt-20231230}/libcerror/Makefile.am +0 -0
  136. {libfwevt-20231119 → libfwevt-20231230}/libcerror/Makefile.in +0 -0
  137. {libfwevt-20231119 → libfwevt-20231230}/libcerror/libcerror_definitions.h +0 -0
  138. {libfwevt-20231119 → libfwevt-20231230}/libcerror/libcerror_error.c +0 -0
  139. {libfwevt-20231119 → libfwevt-20231230}/libcerror/libcerror_error.h +0 -0
  140. {libfwevt-20231119 → libfwevt-20231230}/libcerror/libcerror_extern.h +0 -0
  141. {libfwevt-20231119 → libfwevt-20231230}/libcerror/libcerror_support.c +0 -0
  142. {libfwevt-20231119 → libfwevt-20231230}/libcerror/libcerror_support.h +0 -0
  143. {libfwevt-20231119 → libfwevt-20231230}/libcerror/libcerror_system.c +0 -0
  144. {libfwevt-20231119 → libfwevt-20231230}/libcerror/libcerror_system.h +0 -0
  145. {libfwevt-20231119 → libfwevt-20231230}/libcerror/libcerror_types.h +0 -0
  146. {libfwevt-20231119 → libfwevt-20231230}/libcerror/libcerror_unused.h +0 -0
  147. {libfwevt-20231119 → libfwevt-20231230}/libcnotify/Makefile.am +0 -0
  148. {libfwevt-20231119 → libfwevt-20231230}/libcnotify/Makefile.in +0 -0
  149. {libfwevt-20231119 → libfwevt-20231230}/libcnotify/libcnotify_definitions.h +0 -0
  150. {libfwevt-20231119 → libfwevt-20231230}/libcnotify/libcnotify_extern.h +0 -0
  151. {libfwevt-20231119 → libfwevt-20231230}/libcnotify/libcnotify_libcerror.h +0 -0
  152. {libfwevt-20231119 → libfwevt-20231230}/libcnotify/libcnotify_print.c +0 -0
  153. {libfwevt-20231119 → libfwevt-20231230}/libcnotify/libcnotify_print.h +0 -0
  154. {libfwevt-20231119 → libfwevt-20231230}/libcnotify/libcnotify_stream.c +0 -0
  155. {libfwevt-20231119 → libfwevt-20231230}/libcnotify/libcnotify_stream.h +0 -0
  156. {libfwevt-20231119 → libfwevt-20231230}/libcnotify/libcnotify_support.c +0 -0
  157. {libfwevt-20231119 → libfwevt-20231230}/libcnotify/libcnotify_support.h +0 -0
  158. {libfwevt-20231119 → libfwevt-20231230}/libcnotify/libcnotify_unused.h +0 -0
  159. {libfwevt-20231119 → libfwevt-20231230}/libcnotify/libcnotify_verbose.c +0 -0
  160. {libfwevt-20231119 → libfwevt-20231230}/libcnotify/libcnotify_verbose.h +0 -0
  161. {libfwevt-20231119 → libfwevt-20231230}/libcthreads/Makefile.am +0 -0
  162. {libfwevt-20231119 → libfwevt-20231230}/libcthreads/Makefile.in +0 -0
  163. {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_condition.c +0 -0
  164. {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_condition.h +0 -0
  165. {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_definitions.h +0 -0
  166. {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_error.c +0 -0
  167. {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_error.h +0 -0
  168. {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_extern.h +0 -0
  169. {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_libcerror.h +0 -0
  170. {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_lock.c +0 -0
  171. {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_lock.h +0 -0
  172. {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_mutex.c +0 -0
  173. {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_mutex.h +0 -0
  174. {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_queue.c +0 -0
  175. {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_queue.h +0 -0
  176. {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_read_write_lock.c +0 -0
  177. {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_read_write_lock.h +0 -0
  178. {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_repeating_thread.c +0 -0
  179. {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_repeating_thread.h +0 -0
  180. {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_support.c +0 -0
  181. {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_support.h +0 -0
  182. {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_thread.c +0 -0
  183. {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_thread.h +0 -0
  184. {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_thread_attributes.c +0 -0
  185. {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_thread_attributes.h +0 -0
  186. {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_thread_pool.c +0 -0
  187. {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_thread_pool.h +0 -0
  188. {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_types.h +0 -0
  189. {libfwevt-20231119 → libfwevt-20231230}/libcthreads/libcthreads_unused.h +0 -0
  190. {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/Makefile.am +0 -0
  191. {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/Makefile.in +0 -0
  192. {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_date_time_values.c +0 -0
  193. {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_date_time_values.h +0 -0
  194. {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_definitions.h +0 -0
  195. {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_error.c +0 -0
  196. {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_error.h +0 -0
  197. {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_extern.h +0 -0
  198. {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_fat_date_time.c +0 -0
  199. {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_fat_date_time.h +0 -0
  200. {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_filetime.c +0 -0
  201. {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_filetime.h +0 -0
  202. {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_floatingtime.c +0 -0
  203. {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_floatingtime.h +0 -0
  204. {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_hfs_time.c +0 -0
  205. {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_hfs_time.h +0 -0
  206. {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_libcerror.h +0 -0
  207. {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_nsf_timedate.c +0 -0
  208. {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_nsf_timedate.h +0 -0
  209. {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_posix_time.c +0 -0
  210. {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_posix_time.h +0 -0
  211. {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_support.c +0 -0
  212. {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_support.h +0 -0
  213. {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_systemtime.c +0 -0
  214. {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_systemtime.h +0 -0
  215. {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_types.h +0 -0
  216. {libfwevt-20231119 → libfwevt-20231230}/libfdatetime/libfdatetime_unused.h +0 -0
  217. {libfwevt-20231119 → libfwevt-20231230}/libfguid/Makefile.am +0 -0
  218. {libfwevt-20231119 → libfwevt-20231230}/libfguid/Makefile.in +0 -0
  219. {libfwevt-20231119 → libfwevt-20231230}/libfguid/libfguid_definitions.h +0 -0
  220. {libfwevt-20231119 → libfwevt-20231230}/libfguid/libfguid_error.c +0 -0
  221. {libfwevt-20231119 → libfwevt-20231230}/libfguid/libfguid_error.h +0 -0
  222. {libfwevt-20231119 → libfwevt-20231230}/libfguid/libfguid_extern.h +0 -0
  223. {libfwevt-20231119 → libfwevt-20231230}/libfguid/libfguid_identifier.c +0 -0
  224. {libfwevt-20231119 → libfwevt-20231230}/libfguid/libfguid_identifier.h +0 -0
  225. {libfwevt-20231119 → libfwevt-20231230}/libfguid/libfguid_libcerror.h +0 -0
  226. {libfwevt-20231119 → libfwevt-20231230}/libfguid/libfguid_support.c +0 -0
  227. {libfwevt-20231119 → libfwevt-20231230}/libfguid/libfguid_support.h +0 -0
  228. {libfwevt-20231119 → libfwevt-20231230}/libfguid/libfguid_types.h +0 -0
  229. {libfwevt-20231119 → libfwevt-20231230}/libfguid/libfguid_unused.h +0 -0
  230. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/Makefile.am +0 -0
  231. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/Makefile.in +0 -0
  232. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_binary_data.c +0 -0
  233. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_binary_data.h +0 -0
  234. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_codepage.h +0 -0
  235. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_data_handle.c +0 -0
  236. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_data_handle.h +0 -0
  237. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_definitions.h +0 -0
  238. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_error.c +0 -0
  239. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_error.h +0 -0
  240. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_extern.h +0 -0
  241. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_filetime.c +0 -0
  242. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_filetime.h +0 -0
  243. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_floating_point.c +0 -0
  244. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_floating_point.h +0 -0
  245. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_integer.c +0 -0
  246. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_integer.h +0 -0
  247. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_libcdata.h +0 -0
  248. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_libcerror.h +0 -0
  249. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_libcnotify.h +0 -0
  250. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_libfdatetime.h +0 -0
  251. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_libfguid.h +0 -0
  252. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_libfwnt.h +0 -0
  253. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_libuna.h +0 -0
  254. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_split_utf16_string.c +0 -0
  255. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_split_utf16_string.h +0 -0
  256. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_split_utf8_string.c +0 -0
  257. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_split_utf8_string.h +0 -0
  258. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_string.c +0 -0
  259. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_string.h +0 -0
  260. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_support.c +0 -0
  261. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_support.h +0 -0
  262. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_table.c +0 -0
  263. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_table.h +0 -0
  264. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_types.h +0 -0
  265. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_unused.h +0 -0
  266. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_utf16_string.c +0 -0
  267. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_utf16_string.h +0 -0
  268. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_utf8_string.c +0 -0
  269. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_utf8_string.h +0 -0
  270. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_value.c +0 -0
  271. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_value.h +0 -0
  272. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_value_entry.c +0 -0
  273. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_value_entry.h +0 -0
  274. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_value_type.c +0 -0
  275. {libfwevt-20231119 → libfwevt-20231230}/libfvalue/libfvalue_value_type.h +0 -0
  276. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt.c +0 -0
  277. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt.rc.in +0 -0
  278. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_debug.c +0 -0
  279. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_debug.h +0 -0
  280. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_definitions.h.in +0 -0
  281. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_error.c +0 -0
  282. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_error.h +0 -0
  283. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_event.c +0 -0
  284. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_event.h +0 -0
  285. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_extern.h +0 -0
  286. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_keyword.c +0 -0
  287. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_keyword.h +0 -0
  288. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_level.h +0 -0
  289. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_libcdata.h +0 -0
  290. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_libcerror.h +0 -0
  291. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_libcnotify.h +0 -0
  292. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_libfguid.h +0 -0
  293. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_libfvalue.h +0 -0
  294. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_libuna.h +0 -0
  295. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_manifest.c +0 -0
  296. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_manifest.h +0 -0
  297. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_map.c +0 -0
  298. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_map.h +0 -0
  299. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_notify.c +0 -0
  300. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_notify.h +0 -0
  301. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_opcode.h +0 -0
  302. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_provider.c +0 -0
  303. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_provider.h +0 -0
  304. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_support.c +0 -0
  305. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_support.h +0 -0
  306. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_task.h +0 -0
  307. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_unused.h +0 -0
  308. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_xml_document.c +0 -0
  309. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_xml_document.h +0 -0
  310. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_xml_tag.c +0 -0
  311. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_xml_tag.h +0 -0
  312. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_xml_template_value.c +0 -0
  313. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_xml_template_value.h +0 -0
  314. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_xml_token.c +0 -0
  315. {libfwevt-20231119 → libfwevt-20231230}/libfwevt/libfwevt_xml_token.h +0 -0
  316. {libfwevt-20231119 → libfwevt-20231230}/libfwevt.pc.in +0 -0
  317. {libfwevt-20231119 → libfwevt-20231230}/libfwevt.spec.in +0 -0
  318. {libfwevt-20231119 → libfwevt-20231230}/libuna/Makefile.am +0 -0
  319. {libfwevt-20231119 → libfwevt-20231230}/libuna/Makefile.in +0 -0
  320. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_base16_stream.c +0 -0
  321. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_base16_stream.h +0 -0
  322. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_base32_stream.c +0 -0
  323. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_base32_stream.h +0 -0
  324. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_base64_stream.c +0 -0
  325. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_base64_stream.h +0 -0
  326. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_byte_stream.c +0 -0
  327. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_byte_stream.h +0 -0
  328. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_10.c +0 -0
  329. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_10.h +0 -0
  330. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_13.c +0 -0
  331. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_13.h +0 -0
  332. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_14.c +0 -0
  333. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_14.h +0 -0
  334. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_15.c +0 -0
  335. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_15.h +0 -0
  336. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_16.c +0 -0
  337. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_16.h +0 -0
  338. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_2.c +0 -0
  339. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_2.h +0 -0
  340. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_3.c +0 -0
  341. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_3.h +0 -0
  342. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_4.c +0 -0
  343. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_4.h +0 -0
  344. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_5.c +0 -0
  345. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_5.h +0 -0
  346. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_6.c +0 -0
  347. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_6.h +0 -0
  348. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_7.c +0 -0
  349. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_7.h +0 -0
  350. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_8.c +0 -0
  351. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_8.h +0 -0
  352. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_9.c +0 -0
  353. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_iso_8859_9.h +0 -0
  354. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_koi8_r.c +0 -0
  355. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_koi8_r.h +0 -0
  356. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_koi8_u.c +0 -0
  357. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_koi8_u.h +0 -0
  358. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_arabic.c +0 -0
  359. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_arabic.h +0 -0
  360. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_celtic.c +0 -0
  361. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_celtic.h +0 -0
  362. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_centraleurroman.c +0 -0
  363. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_centraleurroman.h +0 -0
  364. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_croatian.c +0 -0
  365. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_croatian.h +0 -0
  366. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_cyrillic.c +0 -0
  367. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_cyrillic.h +0 -0
  368. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_dingbats.c +0 -0
  369. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_dingbats.h +0 -0
  370. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_farsi.c +0 -0
  371. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_farsi.h +0 -0
  372. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_gaelic.c +0 -0
  373. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_gaelic.h +0 -0
  374. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_greek.c +0 -0
  375. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_greek.h +0 -0
  376. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_icelandic.c +0 -0
  377. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_icelandic.h +0 -0
  378. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_inuit.c +0 -0
  379. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_inuit.h +0 -0
  380. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_roman.c +0 -0
  381. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_roman.h +0 -0
  382. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_romanian.c +0 -0
  383. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_romanian.h +0 -0
  384. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_russian.c +0 -0
  385. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_russian.h +0 -0
  386. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_symbol.c +0 -0
  387. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_symbol.h +0 -0
  388. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_thai.c +0 -0
  389. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_thai.h +0 -0
  390. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_turkish.c +0 -0
  391. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_turkish.h +0 -0
  392. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_ukrainian.c +0 -0
  393. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_mac_ukrainian.h +0 -0
  394. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1250.c +0 -0
  395. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1250.h +0 -0
  396. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1251.c +0 -0
  397. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1251.h +0 -0
  398. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1252.c +0 -0
  399. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1252.h +0 -0
  400. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1253.c +0 -0
  401. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1253.h +0 -0
  402. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1254.c +0 -0
  403. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1254.h +0 -0
  404. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1255.c +0 -0
  405. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1255.h +0 -0
  406. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1256.c +0 -0
  407. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1256.h +0 -0
  408. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1257.c +0 -0
  409. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1257.h +0 -0
  410. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1258.c +0 -0
  411. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_1258.h +0 -0
  412. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_874.c +0 -0
  413. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_874.h +0 -0
  414. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_932.c +0 -0
  415. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_932.h +0 -0
  416. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_936.c +0 -0
  417. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_936.h +0 -0
  418. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_949.c +0 -0
  419. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_949.h +0 -0
  420. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_950.c +0 -0
  421. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_codepage_windows_950.h +0 -0
  422. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_definitions.h +0 -0
  423. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_error.c +0 -0
  424. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_error.h +0 -0
  425. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_extern.h +0 -0
  426. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_libcerror.h +0 -0
  427. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_scsu.c +0 -0
  428. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_scsu.h +0 -0
  429. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_support.c +0 -0
  430. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_support.h +0 -0
  431. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_types.h +0 -0
  432. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_unicode_character.c +0 -0
  433. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_unicode_character.h +0 -0
  434. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_unused.h +0 -0
  435. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_url_stream.c +0 -0
  436. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_url_stream.h +0 -0
  437. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_utf16_stream.c +0 -0
  438. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_utf16_stream.h +0 -0
  439. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_utf16_string.c +0 -0
  440. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_utf16_string.h +0 -0
  441. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_utf32_stream.c +0 -0
  442. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_utf32_stream.h +0 -0
  443. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_utf32_string.c +0 -0
  444. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_utf32_string.h +0 -0
  445. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_utf7_stream.c +0 -0
  446. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_utf7_stream.h +0 -0
  447. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_utf8_stream.c +0 -0
  448. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_utf8_stream.h +0 -0
  449. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_utf8_string.c +0 -0
  450. {libfwevt-20231119 → libfwevt-20231230}/libuna/libuna_utf8_string.h +0 -0
  451. {libfwevt-20231119 → libfwevt-20231230}/ltmain.sh +0 -0
  452. {libfwevt-20231119 → libfwevt-20231230}/m4/common.m4 +0 -0
  453. {libfwevt-20231119 → libfwevt-20231230}/m4/gettext.m4 +0 -0
  454. {libfwevt-20231119 → libfwevt-20231230}/m4/host-cpu-c-abi.m4 +0 -0
  455. {libfwevt-20231119 → libfwevt-20231230}/m4/iconv.m4 +0 -0
  456. {libfwevt-20231119 → libfwevt-20231230}/m4/intlmacosx.m4 +0 -0
  457. {libfwevt-20231119 → libfwevt-20231230}/m4/lib-ld.m4 +0 -0
  458. {libfwevt-20231119 → libfwevt-20231230}/m4/lib-link.m4 +0 -0
  459. {libfwevt-20231119 → libfwevt-20231230}/m4/lib-prefix.m4 +0 -0
  460. {libfwevt-20231119 → libfwevt-20231230}/m4/libcdata.m4 +0 -0
  461. {libfwevt-20231119 → libfwevt-20231230}/m4/libcerror.m4 +0 -0
  462. {libfwevt-20231119 → libfwevt-20231230}/m4/libcnotify.m4 +0 -0
  463. {libfwevt-20231119 → libfwevt-20231230}/m4/libcthreads.m4 +0 -0
  464. {libfwevt-20231119 → libfwevt-20231230}/m4/libfdatetime.m4 +0 -0
  465. {libfwevt-20231119 → libfwevt-20231230}/m4/libfguid.m4 +0 -0
  466. {libfwevt-20231119 → libfwevt-20231230}/m4/libfvalue.m4 +0 -0
  467. {libfwevt-20231119 → libfwevt-20231230}/m4/libtool.m4 +0 -0
  468. {libfwevt-20231119 → libfwevt-20231230}/m4/libuna.m4 +0 -0
  469. {libfwevt-20231119 → libfwevt-20231230}/m4/ltoptions.m4 +0 -0
  470. {libfwevt-20231119 → libfwevt-20231230}/m4/ltsugar.m4 +0 -0
  471. {libfwevt-20231119 → libfwevt-20231230}/m4/ltversion.m4 +0 -0
  472. {libfwevt-20231119 → libfwevt-20231230}/m4/lt~obsolete.m4 +0 -0
  473. {libfwevt-20231119 → libfwevt-20231230}/m4/nls.m4 +0 -0
  474. {libfwevt-20231119 → libfwevt-20231230}/m4/po.m4 +0 -0
  475. {libfwevt-20231119 → libfwevt-20231230}/m4/progtest.m4 +0 -0
  476. {libfwevt-20231119 → libfwevt-20231230}/m4/pthread.m4 +0 -0
  477. {libfwevt-20231119 → libfwevt-20231230}/m4/python.m4 +0 -0
  478. {libfwevt-20231119 → libfwevt-20231230}/m4/tests.m4 +0 -0
  479. {libfwevt-20231119 → libfwevt-20231230}/m4/types.m4 +0 -0
  480. {libfwevt-20231119 → libfwevt-20231230}/manuals/Makefile.am +0 -0
  481. {libfwevt-20231119 → libfwevt-20231230}/manuals/Makefile.in +0 -0
  482. {libfwevt-20231119 → libfwevt-20231230}/missing +0 -0
  483. {libfwevt-20231119 → libfwevt-20231230}/msvscpp/fwevt_test_channel/fwevt_test_channel.vcproj +0 -0
  484. {libfwevt-20231119 → libfwevt-20231230}/msvscpp/fwevt_test_error/fwevt_test_error.vcproj +0 -0
  485. {libfwevt-20231119 → libfwevt-20231230}/msvscpp/fwevt_test_event/fwevt_test_event.vcproj +0 -0
  486. {libfwevt-20231119 → libfwevt-20231230}/msvscpp/fwevt_test_keyword/fwevt_test_keyword.vcproj +0 -0
  487. {libfwevt-20231119 → libfwevt-20231230}/msvscpp/fwevt_test_level/fwevt_test_level.vcproj +0 -0
  488. {libfwevt-20231119 → libfwevt-20231230}/msvscpp/fwevt_test_manifest/fwevt_test_manifest.vcproj +0 -0
  489. {libfwevt-20231119 → libfwevt-20231230}/msvscpp/fwevt_test_map/fwevt_test_map.vcproj +0 -0
  490. {libfwevt-20231119 → libfwevt-20231230}/msvscpp/fwevt_test_opcode/fwevt_test_opcode.vcproj +0 -0
  491. {libfwevt-20231119 → libfwevt-20231230}/msvscpp/fwevt_test_provider/fwevt_test_provider.vcproj +0 -0
  492. {libfwevt-20231119 → libfwevt-20231230}/msvscpp/fwevt_test_support/fwevt_test_support.vcproj +0 -0
  493. {libfwevt-20231119 → libfwevt-20231230}/msvscpp/fwevt_test_task/fwevt_test_task.vcproj +0 -0
  494. {libfwevt-20231119 → libfwevt-20231230}/msvscpp/fwevt_test_template/fwevt_test_template.vcproj +0 -0
  495. {libfwevt-20231119 → libfwevt-20231230}/msvscpp/fwevt_test_xml_document/fwevt_test_xml_document.vcproj +0 -0
  496. {libfwevt-20231119 → libfwevt-20231230}/msvscpp/fwevt_test_xml_tag/fwevt_test_xml_tag.vcproj +0 -0
  497. {libfwevt-20231119 → libfwevt-20231230}/msvscpp/fwevt_test_xml_template_value/fwevt_test_xml_template_value.vcproj +0 -0
  498. {libfwevt-20231119 → libfwevt-20231230}/msvscpp/fwevt_test_xml_token/fwevt_test_xml_token.vcproj +0 -0
  499. {libfwevt-20231119 → libfwevt-20231230}/msvscpp/libcdata/libcdata.vcproj +0 -0
  500. {libfwevt-20231119 → libfwevt-20231230}/msvscpp/libcerror/libcerror.vcproj +0 -0
  501. {libfwevt-20231119 → libfwevt-20231230}/msvscpp/libcnotify/libcnotify.vcproj +0 -0
  502. {libfwevt-20231119 → libfwevt-20231230}/msvscpp/libcthreads/libcthreads.vcproj +0 -0
  503. {libfwevt-20231119 → libfwevt-20231230}/msvscpp/libfdatetime/libfdatetime.vcproj +0 -0
  504. {libfwevt-20231119 → libfwevt-20231230}/msvscpp/libfguid/libfguid.vcproj +0 -0
  505. {libfwevt-20231119 → libfwevt-20231230}/msvscpp/libfvalue/libfvalue.vcproj +0 -0
  506. {libfwevt-20231119 → libfwevt-20231230}/msvscpp/libuna/libuna.vcproj +0 -0
  507. {libfwevt-20231119 → libfwevt-20231230}/ossfuzz/Makefile.am +0 -0
  508. {libfwevt-20231119 → libfwevt-20231230}/ossfuzz/Makefile.in +0 -0
  509. {libfwevt-20231119 → libfwevt-20231230}/ossfuzz/manifest_fuzzer.cc +0 -0
  510. {libfwevt-20231119 → libfwevt-20231230}/ossfuzz/ossfuzz_libfwevt.h +0 -0
  511. {libfwevt-20231119 → libfwevt-20231230}/ossfuzz/xml_document_fuzzer.cc +0 -0
  512. {libfwevt-20231119 → libfwevt-20231230}/po/ChangeLog +0 -0
  513. {libfwevt-20231119 → libfwevt-20231230}/po/Makefile.in.in +0 -0
  514. {libfwevt-20231119 → libfwevt-20231230}/po/Makevars +0 -0
  515. {libfwevt-20231119 → libfwevt-20231230}/po/Makevars.in +0 -0
  516. {libfwevt-20231119 → libfwevt-20231230}/po/POTFILES.in +0 -0
  517. {libfwevt-20231119 → libfwevt-20231230}/po/Rules-quot +0 -0
  518. {libfwevt-20231119 → libfwevt-20231230}/po/boldquot.sed +0 -0
  519. {libfwevt-20231119 → libfwevt-20231230}/po/en@boldquot.header +0 -0
  520. {libfwevt-20231119 → libfwevt-20231230}/po/en@quot.header +0 -0
  521. {libfwevt-20231119 → libfwevt-20231230}/po/insert-header.sin +0 -0
  522. {libfwevt-20231119 → libfwevt-20231230}/po/quot.sed +0 -0
  523. {libfwevt-20231119 → libfwevt-20231230}/po/remove-potcdate.sin +0 -0
  524. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt.h +0 -0
  525. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_channels.c +0 -0
  526. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_channels.h +0 -0
  527. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_error.c +0 -0
  528. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_error.h +0 -0
  529. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_event.c +0 -0
  530. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_event.h +0 -0
  531. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_events.c +0 -0
  532. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_events.h +0 -0
  533. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_guid.c +0 -0
  534. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_guid.h +0 -0
  535. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_integer.c +0 -0
  536. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_integer.h +0 -0
  537. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_keyword.c +0 -0
  538. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_keyword.h +0 -0
  539. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_keywords.c +0 -0
  540. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_keywords.h +0 -0
  541. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_level.c +0 -0
  542. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_level.h +0 -0
  543. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_levels.c +0 -0
  544. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_levels.h +0 -0
  545. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_libcerror.h +0 -0
  546. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_libfguid.h +0 -0
  547. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_libfwevt.h +0 -0
  548. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_manifest.c +0 -0
  549. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_manifest.h +0 -0
  550. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_map.c +0 -0
  551. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_map.h +0 -0
  552. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_maps.c +0 -0
  553. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_maps.h +0 -0
  554. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_opcode.c +0 -0
  555. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_opcode.h +0 -0
  556. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_opcodes.c +0 -0
  557. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_opcodes.h +0 -0
  558. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_provider.c +0 -0
  559. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_provider.h +0 -0
  560. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_providers.c +0 -0
  561. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_providers.h +0 -0
  562. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_python.h +0 -0
  563. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_task.c +0 -0
  564. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_task.h +0 -0
  565. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_tasks.c +0 -0
  566. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_tasks.h +0 -0
  567. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_templates.c +0 -0
  568. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_templates.h +0 -0
  569. {libfwevt-20231119 → libfwevt-20231230}/pyfwevt/pyfwevt_unused.h +0 -0
  570. {libfwevt-20231119 → libfwevt-20231230}/pyproject.toml +0 -0
  571. {libfwevt-20231119 → libfwevt-20231230}/setup.cfg.in +0 -0
  572. {libfwevt-20231119 → libfwevt-20231230}/setup.py +0 -0
  573. {libfwevt-20231119 → libfwevt-20231230}/test-driver +0 -0
  574. {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_channel.c +0 -0
  575. {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_error.c +0 -0
  576. {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_event.c +0 -0
  577. {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_keyword.c +0 -0
  578. {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_level.c +0 -0
  579. {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_libcerror.h +0 -0
  580. {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_libcnotify.h +0 -0
  581. {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_libfvalue.h +0 -0
  582. {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_libfwevt.h +0 -0
  583. {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_libuna.h +0 -0
  584. {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_macros.h +0 -0
  585. {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_manifest.c +0 -0
  586. {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_map.c +0 -0
  587. {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_memory.c +0 -0
  588. {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_memory.h +0 -0
  589. {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_opcode.c +0 -0
  590. {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_provider.c +0 -0
  591. {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_support.c +0 -0
  592. {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_task.c +0 -0
  593. {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_unused.h +0 -0
  594. {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_xml_document.c +0 -0
  595. {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_xml_tag.c +0 -0
  596. {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_xml_template_value.c +0 -0
  597. {libfwevt-20231119 → libfwevt-20231230}/tests/fwevt_test_xml_token.c +0 -0
  598. {libfwevt-20231119 → libfwevt-20231230}/tests/pyfwevt_test_manifest.py +0 -0
  599. {libfwevt-20231119 → libfwevt-20231230}/tests/pyfwevt_test_provider.py +0 -0
  600. {libfwevt-20231119 → libfwevt-20231230}/tests/pyfwevt_test_support.py +0 -0
  601. {libfwevt-20231119 → libfwevt-20231230}/tests/test_manpage.sh +0 -0
  602. {libfwevt-20231119 → libfwevt-20231230}/tests/test_python_module.sh +0 -0
  603. {libfwevt-20231119 → libfwevt-20231230}/tests/test_runner.sh +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: libfwevt-python
3
- Version: 20231119
3
+ Version: 20231230
4
4
  Summary: Python bindings module for libfwevt
5
5
  Author: Joachim Metz
6
6
  Author-email: joachim.metz@gmail.com
@@ -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 20231119"
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 "20231119"
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 "20231119"
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 20231119.
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='20231119'
625
- PACKAGE_STRING='libfwevt 20231119'
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 20231119 to adapt to many kinds of systems.
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 20231119:";;
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 20231119
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 20231119, which was
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='20231119'
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 20231119, which was
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 20231119
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
 
@@ -2,7 +2,7 @@ AC_PREREQ([2.71])
2
2
 
3
3
  AC_INIT(
4
4
  [libfwevt],
5
- [20231119],
5
+ [20231230],
6
6
  [joachim.metz@gmail.com])
7
7
 
8
8
  AC_CONFIG_SRCDIR(
@@ -0,0 +1,5 @@
1
+ libfwevt (20231230-1) unstable; urgency=low
2
+
3
+ * Auto-generated
4
+
5
+ -- Joachim Metz <joachim.metz@gmail.com> Sat, 30 Dec 2023 06:22:18 +0100
@@ -24,11 +24,11 @@
24
24
 
25
25
  #include <libfwevt/types.h>
26
26
 
27
- #define LIBFWEVT_VERSION 20231119
27
+ #define LIBFWEVT_VERSION 20231230
28
28
 
29
29
  /* The version string
30
30
  */
31
- #define LIBFWEVT_VERSION_STRING "20231119"
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 channel is referencing, is set to NULL
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 channel is referencing, is set to NULL
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 channel is referencing, is set to NULL
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 channel is referencing, is set to NULL
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 libfwevt_xml_document.lo \
152
- libfwevt_xml_tag.lo libfwevt_xml_template_value.lo \
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 data offset
140
+ /* The name offset
141
141
  * Consists of 4 bytes
142
142
  */
143
- uint8_t data_offset[ 4 ];
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 instance values offset
536
+ /* The template items offset
537
537
  * Consists of 4 bytes
538
538
  */
539
- uint8_t instance_values_offset[ 4 ];
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", "20231119" "\0"
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", "20231119" "\0"
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