libfwevt-python 20240504__tar.gz → 20260602__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 (1128) hide show
  1. libfwevt_python-20260602/AUTHORS +4 -0
  2. {libfwevt-20240504 → libfwevt_python-20260602}/INSTALL +0 -0
  3. libfwevt_python-20260602/Makefile.am +89 -0
  4. libfwevt_python-20260602/Makefile.in +1125 -0
  5. libfwevt_python-20260602/PKG-INFO +29 -0
  6. libfwevt_python-20260602/README +12 -0
  7. libfwevt_python-20260602/_build.py +275 -0
  8. libfwevt_python-20260602/acinclude.m4 +35 -0
  9. libfwevt_python-20260602/common/Makefile.in +707 -0
  10. libfwevt_python-20260602/common/byte_stream.h +312 -0
  11. libfwevt_python-20260602/common/common.h +43 -0
  12. libfwevt_python-20260602/common/config.h +434 -0
  13. libfwevt_python-20260602/common/config.h.in +433 -0
  14. libfwevt_python-20260602/common/config_borlandc.h +26 -0
  15. libfwevt_python-20260602/common/config_msc.h +34 -0
  16. libfwevt_python-20260602/common/config_winapi.h +95 -0
  17. libfwevt_python-20260602/common/file_stream.h +151 -0
  18. libfwevt_python-20260602/common/memory.h +129 -0
  19. libfwevt_python-20260602/common/narrow_string.h +187 -0
  20. libfwevt_python-20260602/common/system_string.h +154 -0
  21. libfwevt_python-20260602/common/types.h +392 -0
  22. libfwevt_python-20260602/common/types.h.in +392 -0
  23. libfwevt_python-20260602/common/wide_string.h +175 -0
  24. libfwevt_python-20260602/config.guess +1754 -0
  25. libfwevt_python-20260602/config.sub +1890 -0
  26. libfwevt_python-20260602/configure +48172 -0
  27. libfwevt_python-20260602/configure.ac +199 -0
  28. libfwevt_python-20260602/dpkg/changelog +5 -0
  29. libfwevt_python-20260602/dpkg/copyright +25 -0
  30. libfwevt_python-20260602/include/Makefile.in +768 -0
  31. libfwevt_python-20260602/include/libfwevt/definitions.h +153 -0
  32. libfwevt_python-20260602/include/libfwevt/definitions.h.in +153 -0
  33. libfwevt_python-20260602/include/libfwevt/error.h +291 -0
  34. libfwevt_python-20260602/include/libfwevt/extern.h +47 -0
  35. libfwevt_python-20260602/include/libfwevt/features.h +38 -0
  36. libfwevt_python-20260602/include/libfwevt/features.h.in +38 -0
  37. libfwevt_python-20260602/include/libfwevt/types.h +225 -0
  38. libfwevt_python-20260602/include/libfwevt/types.h.in +225 -0
  39. libfwevt_python-20260602/include/libfwevt.h +1205 -0
  40. libfwevt_python-20260602/include/libfwevt.h.in +1205 -0
  41. libfwevt_python-20260602/libcdata/Makefile.in +849 -0
  42. libfwevt_python-20260602/libcdata/libcdata_array.c +2015 -0
  43. libfwevt_python-20260602/libcdata/libcdata_array.h +200 -0
  44. libfwevt_python-20260602/libcdata/libcdata_btree.c +964 -0
  45. libfwevt_python-20260602/libcdata/libcdata_btree.h +141 -0
  46. libfwevt_python-20260602/libcdata/libcdata_btree_node.c +1607 -0
  47. libfwevt_python-20260602/libcdata/libcdata_btree_node.h +101 -0
  48. libfwevt_python-20260602/libcdata/libcdata_btree_values_list.c +217 -0
  49. libfwevt_python-20260602/libcdata/libcdata_btree_values_list.h +55 -0
  50. libfwevt_python-20260602/libcdata/libcdata_definitions.h +81 -0
  51. libfwevt_python-20260602/libcdata/libcdata_error.c +111 -0
  52. libfwevt_python-20260602/libcdata/libcdata_error.h +74 -0
  53. libfwevt_python-20260602/libcdata/libcdata_extern.h +40 -0
  54. libfwevt_python-20260602/libcdata/libcdata_libcerror.h +50 -0
  55. libfwevt_python-20260602/libcdata/libcdata_libcthreads.h +64 -0
  56. libfwevt_python-20260602/libcdata/libcdata_list.c +2906 -0
  57. libfwevt_python-20260602/libcdata/libcdata_list.h +235 -0
  58. libfwevt_python-20260602/libcdata/libcdata_list_element.c +926 -0
  59. libfwevt_python-20260602/libcdata/libcdata_list_element.h +142 -0
  60. libfwevt_python-20260602/libcdata/libcdata_range_list.c +4922 -0
  61. libfwevt_python-20260602/libcdata/libcdata_range_list.h +382 -0
  62. libfwevt_python-20260602/libcdata/libcdata_range_list_value.c +429 -0
  63. libfwevt_python-20260602/libcdata/libcdata_range_list_value.h +100 -0
  64. libfwevt_python-20260602/libcdata/libcdata_support.c +39 -0
  65. libfwevt_python-20260602/libcdata/libcdata_support.h +47 -0
  66. libfwevt_python-20260602/libcdata/libcdata_tree_node.c +4216 -0
  67. libfwevt_python-20260602/libcdata/libcdata_tree_node.h +301 -0
  68. libfwevt_python-20260602/libcdata/libcdata_types.h +57 -0
  69. libfwevt_python-20260602/libcdata/libcdata_unused.h +44 -0
  70. libfwevt_python-20260602/libcerror/Makefile.in +791 -0
  71. libfwevt_python-20260602/libcerror/libcerror_definitions.h +326 -0
  72. libfwevt_python-20260602/libcerror/libcerror_error.c +827 -0
  73. libfwevt_python-20260602/libcerror/libcerror_error.h +125 -0
  74. libfwevt_python-20260602/libcerror/libcerror_extern.h +40 -0
  75. libfwevt_python-20260602/libcerror/libcerror_support.c +39 -0
  76. libfwevt_python-20260602/libcerror/libcerror_support.h +47 -0
  77. libfwevt_python-20260602/libcerror/libcerror_system.c +569 -0
  78. libfwevt_python-20260602/libcerror/libcerror_system.h +78 -0
  79. libfwevt_python-20260602/libcerror/libcerror_types.h +51 -0
  80. libfwevt_python-20260602/libcerror/libcerror_unused.h +44 -0
  81. libfwevt_python-20260602/libcnotify/Makefile.in +799 -0
  82. libfwevt_python-20260602/libcnotify/libcnotify_definitions.h +54 -0
  83. libfwevt_python-20260602/libcnotify/libcnotify_extern.h +53 -0
  84. libfwevt_python-20260602/libcnotify/libcnotify_libcerror.h +50 -0
  85. libfwevt_python-20260602/libcnotify/libcnotify_print.c +400 -0
  86. libfwevt_python-20260602/libcnotify/libcnotify_print.h +68 -0
  87. libfwevt_python-20260602/libcnotify/libcnotify_stream.c +182 -0
  88. libfwevt_python-20260602/libcnotify/libcnotify_stream.h +59 -0
  89. libfwevt_python-20260602/libcnotify/libcnotify_support.c +39 -0
  90. libfwevt_python-20260602/libcnotify/libcnotify_support.h +49 -0
  91. libfwevt_python-20260602/libcnotify/libcnotify_unused.h +44 -0
  92. libfwevt_python-20260602/libcnotify/libcnotify_verbose.c +38 -0
  93. libfwevt_python-20260602/libcnotify/libcnotify_verbose.h +46 -0
  94. libfwevt_python-20260602/libcthreads/Makefile.in +851 -0
  95. libfwevt_python-20260602/libcthreads/libcthreads_condition.c +735 -0
  96. libfwevt_python-20260602/libcthreads/libcthreads_condition.h +120 -0
  97. libfwevt_python-20260602/libcthreads/libcthreads_definitions.h +84 -0
  98. libfwevt_python-20260602/libcthreads/libcthreads_error.c +111 -0
  99. libfwevt_python-20260602/libcthreads/libcthreads_error.h +74 -0
  100. libfwevt_python-20260602/libcthreads/libcthreads_extern.h +40 -0
  101. libfwevt_python-20260602/libcthreads/libcthreads_libcerror.h +50 -0
  102. libfwevt_python-20260602/libcthreads/libcthreads_lock.c +391 -0
  103. libfwevt_python-20260602/libcthreads/libcthreads_lock.h +88 -0
  104. libfwevt_python-20260602/libcthreads/libcthreads_mutex.c +601 -0
  105. libfwevt_python-20260602/libcthreads/libcthreads_mutex.h +98 -0
  106. libfwevt_python-20260602/libcthreads/libcthreads_queue.c +1150 -0
  107. libfwevt_python-20260602/libcthreads/libcthreads_queue.h +136 -0
  108. libfwevt_python-20260602/libcthreads/libcthreads_read_write_lock.c +690 -0
  109. libfwevt_python-20260602/libcthreads/libcthreads_read_write_lock.h +119 -0
  110. libfwevt_python-20260602/libcthreads/libcthreads_repeating_thread.c +679 -0
  111. libfwevt_python-20260602/libcthreads/libcthreads_repeating_thread.h +123 -0
  112. libfwevt_python-20260602/libcthreads/libcthreads_support.c +39 -0
  113. libfwevt_python-20260602/libcthreads/libcthreads_support.h +47 -0
  114. libfwevt_python-20260602/libcthreads/libcthreads_thread.c +407 -0
  115. libfwevt_python-20260602/libcthreads/libcthreads_thread.h +95 -0
  116. libfwevt_python-20260602/libcthreads/libcthreads_thread_attributes.c +149 -0
  117. libfwevt_python-20260602/libcthreads/libcthreads_thread_attributes.h +78 -0
  118. libfwevt_python-20260602/libcthreads/libcthreads_thread_pool.c +1721 -0
  119. libfwevt_python-20260602/libcthreads/libcthreads_thread_pool.h +177 -0
  120. libfwevt_python-20260602/libcthreads/libcthreads_types.h +63 -0
  121. libfwevt_python-20260602/libcthreads/libcthreads_unused.h +44 -0
  122. libfwevt_python-20260602/libfdatetime/Makefile.in +843 -0
  123. libfwevt_python-20260602/libfdatetime/libfdatetime_date_time_values.c +1906 -0
  124. libfwevt_python-20260602/libfdatetime/libfdatetime_date_time_values.h +121 -0
  125. libfwevt_python-20260602/libfdatetime/libfdatetime_definitions.h +121 -0
  126. libfwevt_python-20260602/libfdatetime/libfdatetime_error.c +111 -0
  127. libfwevt_python-20260602/libfdatetime/libfdatetime_error.h +74 -0
  128. libfwevt_python-20260602/libfdatetime/libfdatetime_extern.h +40 -0
  129. libfwevt_python-20260602/libfdatetime/libfdatetime_fat_date_time.c +1258 -0
  130. libfwevt_python-20260602/libfdatetime/libfdatetime_fat_date_time.h +172 -0
  131. libfwevt_python-20260602/libfdatetime/libfdatetime_filetime.c +1465 -0
  132. libfwevt_python-20260602/libfdatetime/libfdatetime_filetime.h +177 -0
  133. libfwevt_python-20260602/libfdatetime/libfdatetime_floatingtime.c +1333 -0
  134. libfwevt_python-20260602/libfdatetime/libfdatetime_floatingtime.h +168 -0
  135. libfwevt_python-20260602/libfdatetime/libfdatetime_hfs_time.c +1329 -0
  136. libfwevt_python-20260602/libfdatetime/libfdatetime_hfs_time.h +166 -0
  137. libfwevt_python-20260602/libfdatetime/libfdatetime_libcerror.h +50 -0
  138. libfwevt_python-20260602/libfdatetime/libfdatetime_nsf_timedate.c +1373 -0
  139. libfwevt_python-20260602/libfdatetime/libfdatetime_nsf_timedate.h +177 -0
  140. libfwevt_python-20260602/libfdatetime/libfdatetime_posix_time.c +1918 -0
  141. libfwevt_python-20260602/libfdatetime/libfdatetime_posix_time.h +189 -0
  142. libfwevt_python-20260602/libfdatetime/libfdatetime_support.c +41 -0
  143. libfwevt_python-20260602/libfdatetime/libfdatetime_support.h +47 -0
  144. libfwevt_python-20260602/libfdatetime/libfdatetime_systemtime.c +1779 -0
  145. libfwevt_python-20260602/libfdatetime/libfdatetime_systemtime.h +180 -0
  146. libfwevt_python-20260602/libfdatetime/libfdatetime_types.h +63 -0
  147. libfwevt_python-20260602/libfdatetime/libfdatetime_unused.h +44 -0
  148. libfwevt_python-20260602/libfguid/Makefile.in +793 -0
  149. libfwevt_python-20260602/libfguid/libfguid_definitions.h +84 -0
  150. libfwevt_python-20260602/libfguid/libfguid_error.c +111 -0
  151. libfwevt_python-20260602/libfguid/libfguid_error.h +74 -0
  152. libfwevt_python-20260602/libfguid/libfguid_extern.h +40 -0
  153. libfwevt_python-20260602/libfguid/libfguid_identifier.c +2524 -0
  154. libfwevt_python-20260602/libfguid/libfguid_identifier.h +204 -0
  155. libfwevt_python-20260602/libfguid/libfguid_libcerror.h +50 -0
  156. libfwevt_python-20260602/libfguid/libfguid_support.c +41 -0
  157. libfwevt_python-20260602/libfguid/libfguid_support.h +47 -0
  158. libfwevt_python-20260602/libfguid/libfguid_types.h +47 -0
  159. libfwevt_python-20260602/libfguid/libfguid_unused.h +44 -0
  160. libfwevt_python-20260602/libfwevt/Makefile.in +1005 -0
  161. libfwevt_python-20260602/libfwevt/fwevt_template.h +557 -0
  162. libfwevt_python-20260602/libfwevt/libfwevt.c +84 -0
  163. libfwevt_python-20260602/libfwevt/libfwevt.rc +38 -0
  164. libfwevt_python-20260602/libfwevt/libfwevt.rc.in +38 -0
  165. libfwevt_python-20260602/libfwevt/libfwevt_channel.c +698 -0
  166. libfwevt_python-20260602/libfwevt/libfwevt_channel.h +110 -0
  167. libfwevt_python-20260602/libfwevt/libfwevt_data_segment.c +274 -0
  168. libfwevt_python-20260602/libfwevt/libfwevt_data_segment.h +94 -0
  169. libfwevt_python-20260602/libfwevt/libfwevt_date_time.c +468 -0
  170. libfwevt_python-20260602/libfwevt/libfwevt_date_time.h +45 -0
  171. libfwevt_python-20260602/libfwevt/libfwevt_debug.c +689 -0
  172. libfwevt_python-20260602/libfwevt/libfwevt_debug.h +70 -0
  173. libfwevt_python-20260602/libfwevt/libfwevt_definitions.h +168 -0
  174. libfwevt_python-20260602/libfwevt/libfwevt_definitions.h.in +168 -0
  175. libfwevt_python-20260602/libfwevt/libfwevt_error.c +111 -0
  176. libfwevt_python-20260602/libfwevt/libfwevt_error.h +74 -0
  177. libfwevt_python-20260602/libfwevt/libfwevt_event.c +545 -0
  178. libfwevt_python-20260602/libfwevt/libfwevt_event.h +122 -0
  179. libfwevt_python-20260602/libfwevt/libfwevt_extern.h +53 -0
  180. libfwevt_python-20260602/libfwevt/libfwevt_floating_point.c +1296 -0
  181. libfwevt_python-20260602/libfwevt/libfwevt_floating_point.h +77 -0
  182. libfwevt_python-20260602/libfwevt/libfwevt_integer.c +866 -0
  183. libfwevt_python-20260602/libfwevt/libfwevt_integer.h +102 -0
  184. libfwevt_python-20260602/libfwevt/libfwevt_keyword.c +374 -0
  185. libfwevt_python-20260602/libfwevt/libfwevt_keyword.h +70 -0
  186. libfwevt_python-20260602/libfwevt/libfwevt_level.c +373 -0
  187. libfwevt_python-20260602/libfwevt/libfwevt_level.h +70 -0
  188. libfwevt_python-20260602/libfwevt/libfwevt_libcdata.h +54 -0
  189. libfwevt_python-20260602/libfwevt/libfwevt_libcerror.h +50 -0
  190. libfwevt_python-20260602/libfwevt/libfwevt_libcnotify.h +50 -0
  191. libfwevt_python-20260602/libfwevt/libfwevt_libfdatetime.h +56 -0
  192. libfwevt_python-20260602/libfwevt/libfwevt_libfguid.h +49 -0
  193. libfwevt_python-20260602/libfwevt/libfwevt_libfwnt.h +58 -0
  194. libfwevt_python-20260602/libfwevt/libfwevt_libuna.h +60 -0
  195. libfwevt_python-20260602/libfwevt/libfwevt_manifest.c +839 -0
  196. libfwevt_python-20260602/libfwevt/libfwevt_manifest.h +97 -0
  197. libfwevt_python-20260602/libfwevt/libfwevt_map.c +278 -0
  198. libfwevt_python-20260602/libfwevt/libfwevt_map.h +70 -0
  199. libfwevt_python-20260602/libfwevt/libfwevt_notify.c +120 -0
  200. libfwevt_python-20260602/libfwevt/libfwevt_notify.h +63 -0
  201. libfwevt_python-20260602/libfwevt/libfwevt_opcode.c +373 -0
  202. libfwevt_python-20260602/libfwevt/libfwevt_opcode.h +70 -0
  203. libfwevt_python-20260602/libfwevt/libfwevt_provider.c +4270 -0
  204. libfwevt_python-20260602/libfwevt/libfwevt_provider.h +325 -0
  205. libfwevt_python-20260602/libfwevt/libfwevt_support.c +41 -0
  206. libfwevt_python-20260602/libfwevt/libfwevt_support.h +47 -0
  207. libfwevt_python-20260602/libfwevt/libfwevt_task.c +397 -0
  208. libfwevt_python-20260602/libfwevt/libfwevt_task.h +70 -0
  209. libfwevt_python-20260602/libfwevt/libfwevt_template.c +1616 -0
  210. libfwevt_python-20260602/libfwevt/libfwevt_template.h +194 -0
  211. libfwevt_python-20260602/libfwevt/libfwevt_template_item.c +869 -0
  212. libfwevt_python-20260602/libfwevt/libfwevt_template_item.h +145 -0
  213. libfwevt_python-20260602/libfwevt/libfwevt_types.h +75 -0
  214. libfwevt_python-20260602/libfwevt/libfwevt_unused.h +44 -0
  215. libfwevt_python-20260602/libfwevt/libfwevt_xml_document.c +6743 -0
  216. libfwevt_python-20260602/libfwevt/libfwevt_xml_document.h +311 -0
  217. libfwevt_python-20260602/libfwevt/libfwevt_xml_string.c +984 -0
  218. libfwevt_python-20260602/libfwevt/libfwevt_xml_string.h +72 -0
  219. libfwevt_python-20260602/libfwevt/libfwevt_xml_tag.c +4655 -0
  220. libfwevt_python-20260602/libfwevt/libfwevt_xml_tag.h +305 -0
  221. libfwevt_python-20260602/libfwevt/libfwevt_xml_template_value.c +412 -0
  222. libfwevt_python-20260602/libfwevt/libfwevt_xml_template_value.h +109 -0
  223. libfwevt_python-20260602/libfwevt/libfwevt_xml_token.c +236 -0
  224. libfwevt_python-20260602/libfwevt/libfwevt_xml_token.h +67 -0
  225. libfwevt_python-20260602/libfwevt/libfwevt_xml_value.c +3587 -0
  226. libfwevt_python-20260602/libfwevt/libfwevt_xml_value.h +266 -0
  227. libfwevt_python-20260602/libfwevt.spec +85 -0
  228. libfwevt_python-20260602/libfwnt/Makefile.in +870 -0
  229. libfwevt_python-20260602/libfwnt/libfwnt_access_control_entry.c +764 -0
  230. libfwevt_python-20260602/libfwnt/libfwnt_access_control_entry.h +116 -0
  231. libfwevt_python-20260602/libfwnt/libfwnt_access_control_list.c +516 -0
  232. libfwevt_python-20260602/libfwnt/libfwnt_access_control_list.h +93 -0
  233. libfwevt_python-20260602/libfwnt/libfwnt_bit_stream.c +308 -0
  234. libfwevt_python-20260602/libfwnt/libfwnt_bit_stream.h +85 -0
  235. libfwevt_python-20260602/libfwnt/libfwnt_debug.c +355 -0
  236. libfwevt_python-20260602/libfwnt/libfwnt_debug.h +53 -0
  237. libfwevt_python-20260602/libfwnt/libfwnt_definitions.h +112 -0
  238. libfwevt_python-20260602/libfwnt/libfwnt_error.c +111 -0
  239. libfwevt_python-20260602/libfwnt/libfwnt_error.h +74 -0
  240. libfwevt_python-20260602/libfwnt/libfwnt_extern.h +40 -0
  241. libfwevt_python-20260602/libfwnt/libfwnt_huffman_tree.c +600 -0
  242. libfwevt_python-20260602/libfwnt/libfwnt_huffman_tree.h +79 -0
  243. libfwevt_python-20260602/libfwnt/libfwnt_libcdata.h +54 -0
  244. libfwevt_python-20260602/libfwnt/libfwnt_libcerror.h +50 -0
  245. libfwevt_python-20260602/libfwnt/libfwnt_libcnotify.h +50 -0
  246. libfwevt_python-20260602/libfwnt/libfwnt_locale_identifier.c +470 -0
  247. libfwevt_python-20260602/libfwnt/libfwnt_locale_identifier.h +63 -0
  248. libfwevt_python-20260602/libfwnt/libfwnt_lznt1.c +560 -0
  249. libfwevt_python-20260602/libfwnt/libfwnt_lznt1.h +57 -0
  250. libfwevt_python-20260602/libfwnt/libfwnt_lzx.c +1465 -0
  251. libfwevt_python-20260602/libfwnt/libfwnt_lzx.h +95 -0
  252. libfwevt_python-20260602/libfwnt/libfwnt_lzxpress.c +1041 -0
  253. libfwevt_python-20260602/libfwnt/libfwnt_lzxpress.h +86 -0
  254. libfwevt_python-20260602/libfwnt/libfwnt_notify.c +120 -0
  255. libfwevt_python-20260602/libfwnt/libfwnt_notify.h +63 -0
  256. libfwevt_python-20260602/libfwnt/libfwnt_security_descriptor.c +1027 -0
  257. libfwevt_python-20260602/libfwnt/libfwnt_security_descriptor.h +116 -0
  258. libfwevt_python-20260602/libfwnt/libfwnt_security_identifier.c +1176 -0
  259. libfwevt_python-20260602/libfwnt/libfwnt_security_identifier.h +166 -0
  260. libfwevt_python-20260602/libfwnt/libfwnt_support.c +41 -0
  261. libfwevt_python-20260602/libfwnt/libfwnt_support.h +47 -0
  262. libfwevt_python-20260602/libfwnt/libfwnt_types.h +53 -0
  263. libfwevt_python-20260602/libfwnt/libfwnt_unused.h +44 -0
  264. libfwevt_python-20260602/libuna/Makefile.in +1212 -0
  265. libfwevt_python-20260602/libuna/libuna_base16_stream.c +1511 -0
  266. libfwevt_python-20260602/libuna/libuna_base16_stream.h +93 -0
  267. libfwevt_python-20260602/libuna/libuna_base32_stream.c +3035 -0
  268. libfwevt_python-20260602/libuna/libuna_base32_stream.h +131 -0
  269. libfwevt_python-20260602/libuna/libuna_base64_stream.c +2832 -0
  270. libfwevt_python-20260602/libuna/libuna_base64_stream.h +131 -0
  271. libfwevt_python-20260602/libuna/libuna_byte_stream.c +633 -0
  272. libfwevt_python-20260602/libuna/libuna_byte_stream.h +104 -0
  273. libfwevt_python-20260602/libuna/libuna_codepage_iso_8859_10.c +73 -0
  274. libfwevt_python-20260602/libuna/libuna_codepage_iso_8859_10.h +48 -0
  275. libfwevt_python-20260602/libuna/libuna_codepage_iso_8859_13.c +82 -0
  276. libfwevt_python-20260602/libuna/libuna_codepage_iso_8859_13.h +48 -0
  277. libfwevt_python-20260602/libuna/libuna_codepage_iso_8859_14.c +66 -0
  278. libfwevt_python-20260602/libuna/libuna_codepage_iso_8859_14.h +51 -0
  279. libfwevt_python-20260602/libuna/libuna_codepage_iso_8859_15.c +46 -0
  280. libfwevt_python-20260602/libuna/libuna_codepage_iso_8859_15.h +45 -0
  281. libfwevt_python-20260602/libuna/libuna_codepage_iso_8859_16.c +78 -0
  282. libfwevt_python-20260602/libuna/libuna_codepage_iso_8859_16.h +57 -0
  283. libfwevt_python-20260602/libuna/libuna_codepage_iso_8859_2.c +82 -0
  284. libfwevt_python-20260602/libuna/libuna_codepage_iso_8859_2.h +51 -0
  285. libfwevt_python-20260602/libuna/libuna_codepage_iso_8859_3.c +79 -0
  286. libfwevt_python-20260602/libuna/libuna_codepage_iso_8859_3.h +57 -0
  287. libfwevt_python-20260602/libuna/libuna_codepage_iso_8859_4.c +80 -0
  288. libfwevt_python-20260602/libuna/libuna_codepage_iso_8859_4.h +48 -0
  289. libfwevt_python-20260602/libuna/libuna_codepage_iso_8859_5.c +62 -0
  290. libfwevt_python-20260602/libuna/libuna_codepage_iso_8859_5.h +45 -0
  291. libfwevt_python-20260602/libuna/libuna_codepage_iso_8859_6.c +58 -0
  292. libfwevt_python-20260602/libuna/libuna_codepage_iso_8859_6.h +45 -0
  293. libfwevt_python-20260602/libuna/libuna_codepage_iso_8859_7.c +66 -0
  294. libfwevt_python-20260602/libuna/libuna_codepage_iso_8859_7.h +48 -0
  295. libfwevt_python-20260602/libuna/libuna_codepage_iso_8859_8.c +61 -0
  296. libfwevt_python-20260602/libuna/libuna_codepage_iso_8859_8.h +48 -0
  297. libfwevt_python-20260602/libuna/libuna_codepage_iso_8859_9.c +50 -0
  298. libfwevt_python-20260602/libuna/libuna_codepage_iso_8859_9.h +45 -0
  299. libfwevt_python-20260602/libuna/libuna_codepage_koi8_r.c +392 -0
  300. libfwevt_python-20260602/libuna/libuna_codepage_koi8_r.h +54 -0
  301. libfwevt_python-20260602/libuna/libuna_codepage_koi8_u.c +424 -0
  302. libfwevt_python-20260602/libuna/libuna_codepage_koi8_u.h +54 -0
  303. libfwevt_python-20260602/libuna/libuna_codepage_mac_arabic.c +352 -0
  304. libfwevt_python-20260602/libuna/libuna_codepage_mac_arabic.h +54 -0
  305. libfwevt_python-20260602/libuna/libuna_codepage_mac_celtic.c +395 -0
  306. libfwevt_python-20260602/libuna/libuna_codepage_mac_celtic.h +54 -0
  307. libfwevt_python-20260602/libuna/libuna_codepage_mac_centraleurroman.c +319 -0
  308. libfwevt_python-20260602/libuna/libuna_codepage_mac_centraleurroman.h +54 -0
  309. libfwevt_python-20260602/libuna/libuna_codepage_mac_croatian.c +378 -0
  310. libfwevt_python-20260602/libuna/libuna_codepage_mac_croatian.h +54 -0
  311. libfwevt_python-20260602/libuna/libuna_codepage_mac_cyrillic.c +325 -0
  312. libfwevt_python-20260602/libuna/libuna_codepage_mac_cyrillic.h +54 -0
  313. libfwevt_python-20260602/libuna/libuna_codepage_mac_dingbats.c +347 -0
  314. libfwevt_python-20260602/libuna/libuna_codepage_mac_dingbats.h +54 -0
  315. libfwevt_python-20260602/libuna/libuna_codepage_mac_farsi.c +372 -0
  316. libfwevt_python-20260602/libuna/libuna_codepage_mac_farsi.h +54 -0
  317. libfwevt_python-20260602/libuna/libuna_codepage_mac_gaelic.c +437 -0
  318. libfwevt_python-20260602/libuna/libuna_codepage_mac_gaelic.h +54 -0
  319. libfwevt_python-20260602/libuna/libuna_codepage_mac_greek.c +305 -0
  320. libfwevt_python-20260602/libuna/libuna_codepage_mac_greek.h +54 -0
  321. libfwevt_python-20260602/libuna/libuna_codepage_mac_icelandic.c +381 -0
  322. libfwevt_python-20260602/libuna/libuna_codepage_mac_icelandic.h +54 -0
  323. libfwevt_python-20260602/libuna/libuna_codepage_mac_inuit.c +380 -0
  324. libfwevt_python-20260602/libuna/libuna_codepage_mac_inuit.h +54 -0
  325. libfwevt_python-20260602/libuna/libuna_codepage_mac_roman.c +387 -0
  326. libfwevt_python-20260602/libuna/libuna_codepage_mac_roman.h +54 -0
  327. libfwevt_python-20260602/libuna/libuna_codepage_mac_romanian.c +396 -0
  328. libfwevt_python-20260602/libuna/libuna_codepage_mac_romanian.h +54 -0
  329. libfwevt_python-20260602/libuna/libuna_codepage_mac_russian.c +317 -0
  330. libfwevt_python-20260602/libuna/libuna_codepage_mac_russian.h +54 -0
  331. libfwevt_python-20260602/libuna/libuna_codepage_mac_symbol.c +537 -0
  332. libfwevt_python-20260602/libuna/libuna_codepage_mac_symbol.h +59 -0
  333. libfwevt_python-20260602/libuna/libuna_codepage_mac_thai.c +330 -0
  334. libfwevt_python-20260602/libuna/libuna_codepage_mac_thai.h +59 -0
  335. libfwevt_python-20260602/libuna/libuna_codepage_mac_turkish.c +397 -0
  336. libfwevt_python-20260602/libuna/libuna_codepage_mac_turkish.h +54 -0
  337. libfwevt_python-20260602/libuna/libuna_codepage_mac_ukrainian.c +321 -0
  338. libfwevt_python-20260602/libuna/libuna_codepage_mac_ukrainian.h +54 -0
  339. libfwevt_python-20260602/libuna/libuna_codepage_windows_1250.c +313 -0
  340. libfwevt_python-20260602/libuna/libuna_codepage_windows_1250.h +54 -0
  341. libfwevt_python-20260602/libuna/libuna_codepage_windows_1251.c +301 -0
  342. libfwevt_python-20260602/libuna/libuna_codepage_windows_1251.h +54 -0
  343. libfwevt_python-20260602/libuna/libuna_codepage_windows_1252.c +287 -0
  344. libfwevt_python-20260602/libuna/libuna_codepage_windows_1252.h +54 -0
  345. libfwevt_python-20260602/libuna/libuna_codepage_windows_1253.c +291 -0
  346. libfwevt_python-20260602/libuna/libuna_codepage_windows_1253.h +54 -0
  347. libfwevt_python-20260602/libuna/libuna_codepage_windows_1254.c +348 -0
  348. libfwevt_python-20260602/libuna/libuna_codepage_windows_1254.h +54 -0
  349. libfwevt_python-20260602/libuna/libuna_codepage_windows_1255.c +328 -0
  350. libfwevt_python-20260602/libuna/libuna_codepage_windows_1255.h +54 -0
  351. libfwevt_python-20260602/libuna/libuna_codepage_windows_1256.c +372 -0
  352. libfwevt_python-20260602/libuna/libuna_codepage_windows_1256.h +54 -0
  353. libfwevt_python-20260602/libuna/libuna_codepage_windows_1257.c +303 -0
  354. libfwevt_python-20260602/libuna/libuna_codepage_windows_1257.h +54 -0
  355. libfwevt_python-20260602/libuna/libuna_codepage_windows_1258.c +349 -0
  356. libfwevt_python-20260602/libuna/libuna_codepage_windows_1258.h +54 -0
  357. libfwevt_python-20260602/libuna/libuna_codepage_windows_874.c +274 -0
  358. libfwevt_python-20260602/libuna/libuna_codepage_windows_874.h +54 -0
  359. libfwevt_python-20260602/libuna/libuna_codepage_windows_932.c +4913 -0
  360. libfwevt_python-20260602/libuna/libuna_codepage_windows_932.h +59 -0
  361. libfwevt_python-20260602/libuna/libuna_codepage_windows_936.c +7371 -0
  362. libfwevt_python-20260602/libuna/libuna_codepage_windows_936.h +59 -0
  363. libfwevt_python-20260602/libuna/libuna_codepage_windows_949.c +8163 -0
  364. libfwevt_python-20260602/libuna/libuna_codepage_windows_949.h +59 -0
  365. libfwevt_python-20260602/libuna/libuna_codepage_windows_950.c +6390 -0
  366. libfwevt_python-20260602/libuna/libuna_codepage_windows_950.h +59 -0
  367. libfwevt_python-20260602/libuna/libuna_definitions.h +436 -0
  368. libfwevt_python-20260602/libuna/libuna_error.c +111 -0
  369. libfwevt_python-20260602/libuna/libuna_error.h +74 -0
  370. libfwevt_python-20260602/libuna/libuna_extern.h +53 -0
  371. libfwevt_python-20260602/libuna/libuna_libcerror.h +50 -0
  372. libfwevt_python-20260602/libuna/libuna_scsu.c +64 -0
  373. libfwevt_python-20260602/libuna/libuna_scsu.h +45 -0
  374. libfwevt_python-20260602/libuna/libuna_support.c +39 -0
  375. libfwevt_python-20260602/libuna/libuna_support.h +49 -0
  376. libfwevt_python-20260602/libuna/libuna_types.h +53 -0
  377. libfwevt_python-20260602/libuna/libuna_unicode_character.c +5828 -0
  378. libfwevt_python-20260602/libuna/libuna_unicode_character.h +260 -0
  379. libfwevt_python-20260602/libuna/libuna_unused.h +44 -0
  380. libfwevt_python-20260602/libuna/libuna_url_stream.c +584 -0
  381. libfwevt_python-20260602/libuna/libuna_url_stream.h +71 -0
  382. libfwevt_python-20260602/libuna/libuna_utf16_stream.c +815 -0
  383. libfwevt_python-20260602/libuna/libuna_utf16_stream.h +109 -0
  384. libfwevt_python-20260602/libuna/libuna_utf16_string.c +3950 -0
  385. libfwevt_python-20260602/libuna/libuna_utf16_string.h +325 -0
  386. libfwevt_python-20260602/libuna/libuna_utf32_stream.c +819 -0
  387. libfwevt_python-20260602/libuna/libuna_utf32_stream.h +109 -0
  388. libfwevt_python-20260602/libuna/libuna_utf32_string.c +3808 -0
  389. libfwevt_python-20260602/libuna/libuna_utf32_string.h +321 -0
  390. libfwevt_python-20260602/libuna/libuna_utf7_stream.c +628 -0
  391. libfwevt_python-20260602/libuna/libuna_utf7_stream.h +98 -0
  392. libfwevt_python-20260602/libuna/libuna_utf8_stream.c +748 -0
  393. libfwevt_python-20260602/libuna/libuna_utf8_stream.h +105 -0
  394. libfwevt_python-20260602/libuna/libuna_utf8_string.c +4092 -0
  395. libfwevt_python-20260602/libuna/libuna_utf8_string.h +329 -0
  396. libfwevt_python-20260602/ltmain.sh +11436 -0
  397. libfwevt_python-20260602/m4/common.m4 +656 -0
  398. libfwevt_python-20260602/m4/libcdata.m4 +227 -0
  399. libfwevt_python-20260602/m4/libcerror.m4 +186 -0
  400. libfwevt_python-20260602/m4/libcnotify.m4 +160 -0
  401. libfwevt_python-20260602/m4/libcthreads.m4 +214 -0
  402. libfwevt_python-20260602/m4/libfdatetime.m4 +219 -0
  403. libfwevt_python-20260602/m4/libfguid.m4 +153 -0
  404. libfwevt_python-20260602/m4/libfwnt.m4 +172 -0
  405. libfwevt_python-20260602/m4/libtool.m4 +8427 -0
  406. libfwevt_python-20260602/m4/libuna.m4 +311 -0
  407. {libfwevt-20240504 → libfwevt_python-20260602}/m4/ltoptions.m4 +0 -0
  408. {libfwevt-20240504 → libfwevt_python-20260602}/m4/ltsugar.m4 +0 -0
  409. {libfwevt-20240504 → libfwevt_python-20260602}/m4/ltversion.m4 +0 -0
  410. {libfwevt-20240504 → libfwevt_python-20260602}/m4/lt~obsolete.m4 +0 -0
  411. libfwevt_python-20260602/m4/pthread.m4 +126 -0
  412. libfwevt_python-20260602/m4/python.m4 +222 -0
  413. libfwevt_python-20260602/m4/tests.m4 +210 -0
  414. libfwevt_python-20260602/m4/types.m4 +133 -0
  415. libfwevt_python-20260602/manuals/Makefile.in +689 -0
  416. libfwevt_python-20260602/manuals/libfwevt.3 +278 -0
  417. libfwevt_python-20260602/msvscpp/Makefile.in +643 -0
  418. libfwevt_python-20260602/ossfuzz/Makefile.in +863 -0
  419. libfwevt_python-20260602/ossfuzz/manifest_fuzzer.cc +57 -0
  420. libfwevt_python-20260602/ossfuzz/ossfuzz_libfwevt.h +30 -0
  421. libfwevt_python-20260602/ossfuzz/xml_document_fuzzer.cc +60 -0
  422. libfwevt_python-20260602/pyfwevt/Makefile.in +1178 -0
  423. libfwevt_python-20260602/pyfwevt/pyfwevt.c +554 -0
  424. libfwevt_python-20260602/pyfwevt/pyfwevt.h +51 -0
  425. libfwevt_python-20260602/pyfwevt/pyfwevt_channel.c +501 -0
  426. libfwevt_python-20260602/pyfwevt/pyfwevt_channel.h +80 -0
  427. libfwevt_python-20260602/pyfwevt/pyfwevt_channels.c +460 -0
  428. libfwevt_python-20260602/pyfwevt/pyfwevt_channels.h +97 -0
  429. libfwevt_python-20260602/pyfwevt/pyfwevt_error.c +422 -0
  430. libfwevt_python-20260602/pyfwevt/pyfwevt_error.h +60 -0
  431. libfwevt_python-20260602/pyfwevt/pyfwevt_event.c +573 -0
  432. libfwevt_python-20260602/pyfwevt/pyfwevt_event.h +88 -0
  433. libfwevt_python-20260602/pyfwevt/pyfwevt_events.c +460 -0
  434. libfwevt_python-20260602/pyfwevt/pyfwevt_events.h +97 -0
  435. libfwevt_python-20260602/pyfwevt/pyfwevt_guid.c +130 -0
  436. libfwevt_python-20260602/pyfwevt/pyfwevt_guid.h +43 -0
  437. libfwevt_python-20260602/pyfwevt/pyfwevt_integer.c +399 -0
  438. libfwevt_python-20260602/pyfwevt/pyfwevt_integer.h +56 -0
  439. libfwevt_python-20260602/pyfwevt/pyfwevt_keyword.c +302 -0
  440. libfwevt_python-20260602/pyfwevt/pyfwevt_keyword.h +72 -0
  441. libfwevt_python-20260602/pyfwevt/pyfwevt_keywords.c +460 -0
  442. libfwevt_python-20260602/pyfwevt/pyfwevt_keywords.h +97 -0
  443. libfwevt_python-20260602/pyfwevt/pyfwevt_level.c +299 -0
  444. libfwevt_python-20260602/pyfwevt/pyfwevt_level.h +72 -0
  445. libfwevt_python-20260602/pyfwevt/pyfwevt_levels.c +457 -0
  446. libfwevt_python-20260602/pyfwevt/pyfwevt_levels.h +97 -0
  447. libfwevt_python-20260602/pyfwevt/pyfwevt_libcerror.h +50 -0
  448. libfwevt_python-20260602/pyfwevt/pyfwevt_libfguid.h +49 -0
  449. libfwevt_python-20260602/pyfwevt/pyfwevt_libfwevt.h +30 -0
  450. libfwevt_python-20260602/pyfwevt/pyfwevt_manifest.c +684 -0
  451. libfwevt_python-20260602/pyfwevt/pyfwevt_manifest.h +94 -0
  452. libfwevt_python-20260602/pyfwevt/pyfwevt_map.c +302 -0
  453. libfwevt_python-20260602/pyfwevt/pyfwevt_map.h +72 -0
  454. libfwevt_python-20260602/pyfwevt/pyfwevt_maps.c +460 -0
  455. libfwevt_python-20260602/pyfwevt/pyfwevt_maps.h +97 -0
  456. libfwevt_python-20260602/pyfwevt/pyfwevt_opcode.c +302 -0
  457. libfwevt_python-20260602/pyfwevt/pyfwevt_opcode.h +72 -0
  458. libfwevt_python-20260602/pyfwevt/pyfwevt_opcodes.c +460 -0
  459. libfwevt_python-20260602/pyfwevt/pyfwevt_opcodes.h +97 -0
  460. libfwevt_python-20260602/pyfwevt/pyfwevt_provider.c +2461 -0
  461. libfwevt_python-20260602/pyfwevt/pyfwevt_provider.h +217 -0
  462. libfwevt_python-20260602/pyfwevt/pyfwevt_providers.c +460 -0
  463. libfwevt_python-20260602/pyfwevt/pyfwevt_providers.h +97 -0
  464. libfwevt_python-20260602/pyfwevt/pyfwevt_python.h +83 -0
  465. libfwevt_python-20260602/pyfwevt/pyfwevt_task.c +302 -0
  466. libfwevt_python-20260602/pyfwevt/pyfwevt_task.h +72 -0
  467. libfwevt_python-20260602/pyfwevt/pyfwevt_tasks.c +460 -0
  468. libfwevt_python-20260602/pyfwevt/pyfwevt_tasks.h +97 -0
  469. libfwevt_python-20260602/pyfwevt/pyfwevt_template.c +627 -0
  470. libfwevt_python-20260602/pyfwevt/pyfwevt_template.h +93 -0
  471. libfwevt_python-20260602/pyfwevt/pyfwevt_template_item.c +696 -0
  472. libfwevt_python-20260602/pyfwevt/pyfwevt_template_item.h +92 -0
  473. libfwevt_python-20260602/pyfwevt/pyfwevt_template_items.c +460 -0
  474. libfwevt_python-20260602/pyfwevt/pyfwevt_template_items.h +97 -0
  475. libfwevt_python-20260602/pyfwevt/pyfwevt_templates.c +460 -0
  476. libfwevt_python-20260602/pyfwevt/pyfwevt_templates.h +97 -0
  477. libfwevt_python-20260602/pyfwevt/pyfwevt_unused.h +44 -0
  478. libfwevt_python-20260602/pyproject.toml +35 -0
  479. libfwevt_python-20260602/pyproject.toml.in +35 -0
  480. libfwevt_python-20260602/tests/Makefile.am +339 -0
  481. libfwevt_python-20260602/tests/Makefile.in +1755 -0
  482. libfwevt_python-20260602/tests/fwevt_test_channel.c +614 -0
  483. libfwevt_python-20260602/tests/fwevt_test_data_segment.c +358 -0
  484. libfwevt_python-20260602/tests/fwevt_test_date_time.c +241 -0
  485. libfwevt_python-20260602/tests/fwevt_test_error.c +150 -0
  486. libfwevt_python-20260602/tests/fwevt_test_event.c +885 -0
  487. libfwevt_python-20260602/tests/fwevt_test_floating_point.c +208 -0
  488. libfwevt_python-20260602/tests/fwevt_test_integer.c +228 -0
  489. libfwevt_python-20260602/tests/fwevt_test_keyword.c +616 -0
  490. libfwevt_python-20260602/tests/fwevt_test_level.c +615 -0
  491. libfwevt_python-20260602/tests/fwevt_test_libcerror.h +50 -0
  492. libfwevt_python-20260602/tests/fwevt_test_libcnotify.h +50 -0
  493. libfwevt_python-20260602/tests/fwevt_test_libfwevt.h +30 -0
  494. libfwevt_python-20260602/tests/fwevt_test_libuna.h +60 -0
  495. libfwevt_python-20260602/tests/fwevt_test_macros.h +257 -0
  496. libfwevt_python-20260602/tests/fwevt_test_manifest.c +1017 -0
  497. libfwevt_python-20260602/tests/fwevt_test_map.c +570 -0
  498. libfwevt_python-20260602/tests/fwevt_test_memory.c +177 -0
  499. libfwevt_python-20260602/tests/fwevt_test_memory.h +66 -0
  500. libfwevt_python-20260602/tests/fwevt_test_notify.c +229 -0
  501. libfwevt_python-20260602/tests/fwevt_test_opcode.c +614 -0
  502. libfwevt_python-20260602/tests/fwevt_test_provider.c +5030 -0
  503. libfwevt_python-20260602/tests/fwevt_test_support.c +86 -0
  504. libfwevt_python-20260602/tests/fwevt_test_task.c +618 -0
  505. libfwevt_python-20260602/tests/fwevt_test_template.c +1263 -0
  506. libfwevt_python-20260602/tests/fwevt_test_template_item.c +381 -0
  507. libfwevt_python-20260602/tests/fwevt_test_unused.h +50 -0
  508. libfwevt_python-20260602/tests/fwevt_test_xml_document.c +5394 -0
  509. libfwevt_python-20260602/tests/fwevt_test_xml_tag.c +3591 -0
  510. libfwevt_python-20260602/tests/fwevt_test_xml_template_value.c +1100 -0
  511. libfwevt_python-20260602/tests/fwevt_test_xml_token.c +505 -0
  512. libfwevt_python-20260602/tests/fwevt_test_xml_value.c +1092 -0
  513. libfwevt_python-20260602/tests/pyfwevt_test_event.py +151 -0
  514. libfwevt_python-20260602/tests/pyfwevt_test_manifest.py +113 -0
  515. libfwevt_python-20260602/tests/pyfwevt_test_provider.py +306 -0
  516. libfwevt_python-20260602/tests/pyfwevt_test_support.py +37 -0
  517. libfwevt_python-20260602/tests/test_library.sh +199 -0
  518. libfwevt_python-20260602/tests/test_python_module.sh +200 -0
  519. libfwevt_python-20260602/tests/test_runner.sh +758 -0
  520. libfwevt-20240504/AUTHORS +0 -4
  521. libfwevt-20240504/Makefile.am +0 -90
  522. libfwevt-20240504/Makefile.in +0 -1125
  523. libfwevt-20240504/PKG-INFO +0 -13
  524. libfwevt-20240504/README +0 -12
  525. libfwevt-20240504/acinclude.m4 +0 -35
  526. libfwevt-20240504/common/Makefile.in +0 -706
  527. libfwevt-20240504/common/byte_stream.h +0 -257
  528. libfwevt-20240504/common/common.h +0 -43
  529. libfwevt-20240504/common/config.h +0 -428
  530. libfwevt-20240504/common/config.h.in +0 -427
  531. libfwevt-20240504/common/config_borlandc.h +0 -26
  532. libfwevt-20240504/common/config_msc.h +0 -34
  533. libfwevt-20240504/common/config_winapi.h +0 -95
  534. libfwevt-20240504/common/file_stream.h +0 -151
  535. libfwevt-20240504/common/memory.h +0 -129
  536. libfwevt-20240504/common/narrow_string.h +0 -187
  537. libfwevt-20240504/common/system_string.h +0 -154
  538. libfwevt-20240504/common/types.h +0 -392
  539. libfwevt-20240504/common/types.h.in +0 -392
  540. libfwevt-20240504/common/wide_string.h +0 -175
  541. libfwevt-20240504/config.guess +0 -1774
  542. libfwevt-20240504/config.sub +0 -1907
  543. libfwevt-20240504/configure +0 -47941
  544. libfwevt-20240504/configure.ac +0 -191
  545. libfwevt-20240504/dpkg/changelog +0 -5
  546. libfwevt-20240504/dpkg/copyright +0 -25
  547. libfwevt-20240504/include/Makefile.in +0 -767
  548. libfwevt-20240504/include/libfwevt/definitions.h +0 -153
  549. libfwevt-20240504/include/libfwevt/definitions.h.in +0 -153
  550. libfwevt-20240504/include/libfwevt/error.h +0 -291
  551. libfwevt-20240504/include/libfwevt/extern.h +0 -44
  552. libfwevt-20240504/include/libfwevt/features.h +0 -38
  553. libfwevt-20240504/include/libfwevt/features.h.in +0 -38
  554. libfwevt-20240504/include/libfwevt/types.h +0 -225
  555. libfwevt-20240504/include/libfwevt/types.h.in +0 -225
  556. libfwevt-20240504/include/libfwevt.h +0 -1205
  557. libfwevt-20240504/include/libfwevt.h.in +0 -1205
  558. libfwevt-20240504/libcdata/Makefile.in +0 -848
  559. libfwevt-20240504/libcdata/libcdata_array.c +0 -2015
  560. libfwevt-20240504/libcdata/libcdata_array.h +0 -200
  561. libfwevt-20240504/libcdata/libcdata_btree.c +0 -964
  562. libfwevt-20240504/libcdata/libcdata_btree.h +0 -141
  563. libfwevt-20240504/libcdata/libcdata_btree_node.c +0 -1607
  564. libfwevt-20240504/libcdata/libcdata_btree_node.h +0 -101
  565. libfwevt-20240504/libcdata/libcdata_btree_values_list.c +0 -217
  566. libfwevt-20240504/libcdata/libcdata_btree_values_list.h +0 -55
  567. libfwevt-20240504/libcdata/libcdata_definitions.h +0 -81
  568. libfwevt-20240504/libcdata/libcdata_error.c +0 -111
  569. libfwevt-20240504/libcdata/libcdata_error.h +0 -74
  570. libfwevt-20240504/libcdata/libcdata_extern.h +0 -46
  571. libfwevt-20240504/libcdata/libcdata_libcerror.h +0 -50
  572. libfwevt-20240504/libcdata/libcdata_libcthreads.h +0 -64
  573. libfwevt-20240504/libcdata/libcdata_list.c +0 -2906
  574. libfwevt-20240504/libcdata/libcdata_list.h +0 -235
  575. libfwevt-20240504/libcdata/libcdata_list_element.c +0 -926
  576. libfwevt-20240504/libcdata/libcdata_list_element.h +0 -142
  577. libfwevt-20240504/libcdata/libcdata_range_list.c +0 -4922
  578. libfwevt-20240504/libcdata/libcdata_range_list.h +0 -382
  579. libfwevt-20240504/libcdata/libcdata_range_list_value.c +0 -429
  580. libfwevt-20240504/libcdata/libcdata_range_list_value.h +0 -100
  581. libfwevt-20240504/libcdata/libcdata_support.c +0 -39
  582. libfwevt-20240504/libcdata/libcdata_support.h +0 -47
  583. libfwevt-20240504/libcdata/libcdata_tree_node.c +0 -4216
  584. libfwevt-20240504/libcdata/libcdata_tree_node.h +0 -301
  585. libfwevt-20240504/libcdata/libcdata_types.h +0 -57
  586. libfwevt-20240504/libcdata/libcdata_unused.h +0 -44
  587. libfwevt-20240504/libcerror/Makefile.in +0 -790
  588. libfwevt-20240504/libcerror/libcerror_definitions.h +0 -326
  589. libfwevt-20240504/libcerror/libcerror_error.c +0 -827
  590. libfwevt-20240504/libcerror/libcerror_error.h +0 -125
  591. libfwevt-20240504/libcerror/libcerror_extern.h +0 -46
  592. libfwevt-20240504/libcerror/libcerror_support.c +0 -39
  593. libfwevt-20240504/libcerror/libcerror_support.h +0 -47
  594. libfwevt-20240504/libcerror/libcerror_system.c +0 -587
  595. libfwevt-20240504/libcerror/libcerror_system.h +0 -78
  596. libfwevt-20240504/libcerror/libcerror_types.h +0 -51
  597. libfwevt-20240504/libcerror/libcerror_unused.h +0 -44
  598. libfwevt-20240504/libcnotify/Makefile.in +0 -798
  599. libfwevt-20240504/libcnotify/libcnotify_definitions.h +0 -54
  600. libfwevt-20240504/libcnotify/libcnotify_extern.h +0 -46
  601. libfwevt-20240504/libcnotify/libcnotify_libcerror.h +0 -50
  602. libfwevt-20240504/libcnotify/libcnotify_print.c +0 -400
  603. libfwevt-20240504/libcnotify/libcnotify_print.h +0 -68
  604. libfwevt-20240504/libcnotify/libcnotify_stream.c +0 -182
  605. libfwevt-20240504/libcnotify/libcnotify_stream.h +0 -56
  606. libfwevt-20240504/libcnotify/libcnotify_support.c +0 -39
  607. libfwevt-20240504/libcnotify/libcnotify_support.h +0 -49
  608. libfwevt-20240504/libcnotify/libcnotify_unused.h +0 -44
  609. libfwevt-20240504/libcnotify/libcnotify_verbose.c +0 -38
  610. libfwevt-20240504/libcnotify/libcnotify_verbose.h +0 -50
  611. libfwevt-20240504/libcthreads/Makefile.in +0 -850
  612. libfwevt-20240504/libcthreads/libcthreads_condition.c +0 -735
  613. libfwevt-20240504/libcthreads/libcthreads_condition.h +0 -120
  614. libfwevt-20240504/libcthreads/libcthreads_definitions.h +0 -84
  615. libfwevt-20240504/libcthreads/libcthreads_error.c +0 -111
  616. libfwevt-20240504/libcthreads/libcthreads_error.h +0 -74
  617. libfwevt-20240504/libcthreads/libcthreads_extern.h +0 -46
  618. libfwevt-20240504/libcthreads/libcthreads_libcerror.h +0 -50
  619. libfwevt-20240504/libcthreads/libcthreads_lock.c +0 -391
  620. libfwevt-20240504/libcthreads/libcthreads_lock.h +0 -88
  621. libfwevt-20240504/libcthreads/libcthreads_mutex.c +0 -601
  622. libfwevt-20240504/libcthreads/libcthreads_mutex.h +0 -98
  623. libfwevt-20240504/libcthreads/libcthreads_queue.c +0 -1150
  624. libfwevt-20240504/libcthreads/libcthreads_queue.h +0 -136
  625. libfwevt-20240504/libcthreads/libcthreads_read_write_lock.c +0 -690
  626. libfwevt-20240504/libcthreads/libcthreads_read_write_lock.h +0 -119
  627. libfwevt-20240504/libcthreads/libcthreads_repeating_thread.c +0 -644
  628. libfwevt-20240504/libcthreads/libcthreads_repeating_thread.h +0 -115
  629. libfwevt-20240504/libcthreads/libcthreads_support.c +0 -39
  630. libfwevt-20240504/libcthreads/libcthreads_support.h +0 -47
  631. libfwevt-20240504/libcthreads/libcthreads_thread.c +0 -405
  632. libfwevt-20240504/libcthreads/libcthreads_thread.h +0 -95
  633. libfwevt-20240504/libcthreads/libcthreads_thread_attributes.c +0 -149
  634. libfwevt-20240504/libcthreads/libcthreads_thread_attributes.h +0 -78
  635. libfwevt-20240504/libcthreads/libcthreads_thread_pool.c +0 -1721
  636. libfwevt-20240504/libcthreads/libcthreads_thread_pool.h +0 -177
  637. libfwevt-20240504/libcthreads/libcthreads_types.h +0 -63
  638. libfwevt-20240504/libcthreads/libcthreads_unused.h +0 -44
  639. libfwevt-20240504/libfdatetime/Makefile.in +0 -842
  640. libfwevt-20240504/libfdatetime/libfdatetime_date_time_values.c +0 -1906
  641. libfwevt-20240504/libfdatetime/libfdatetime_date_time_values.h +0 -121
  642. libfwevt-20240504/libfdatetime/libfdatetime_definitions.h +0 -121
  643. libfwevt-20240504/libfdatetime/libfdatetime_error.c +0 -111
  644. libfwevt-20240504/libfdatetime/libfdatetime_error.h +0 -74
  645. libfwevt-20240504/libfdatetime/libfdatetime_extern.h +0 -46
  646. libfwevt-20240504/libfdatetime/libfdatetime_fat_date_time.c +0 -1258
  647. libfwevt-20240504/libfdatetime/libfdatetime_fat_date_time.h +0 -172
  648. libfwevt-20240504/libfdatetime/libfdatetime_filetime.c +0 -1465
  649. libfwevt-20240504/libfdatetime/libfdatetime_filetime.h +0 -177
  650. libfwevt-20240504/libfdatetime/libfdatetime_floatingtime.c +0 -1333
  651. libfwevt-20240504/libfdatetime/libfdatetime_floatingtime.h +0 -168
  652. libfwevt-20240504/libfdatetime/libfdatetime_hfs_time.c +0 -1329
  653. libfwevt-20240504/libfdatetime/libfdatetime_hfs_time.h +0 -166
  654. libfwevt-20240504/libfdatetime/libfdatetime_libcerror.h +0 -50
  655. libfwevt-20240504/libfdatetime/libfdatetime_nsf_timedate.c +0 -1373
  656. libfwevt-20240504/libfdatetime/libfdatetime_nsf_timedate.h +0 -177
  657. libfwevt-20240504/libfdatetime/libfdatetime_posix_time.c +0 -1842
  658. libfwevt-20240504/libfdatetime/libfdatetime_posix_time.h +0 -189
  659. libfwevt-20240504/libfdatetime/libfdatetime_support.c +0 -41
  660. libfwevt-20240504/libfdatetime/libfdatetime_support.h +0 -47
  661. libfwevt-20240504/libfdatetime/libfdatetime_systemtime.c +0 -1779
  662. libfwevt-20240504/libfdatetime/libfdatetime_systemtime.h +0 -180
  663. libfwevt-20240504/libfdatetime/libfdatetime_types.h +0 -63
  664. libfwevt-20240504/libfdatetime/libfdatetime_unused.h +0 -44
  665. libfwevt-20240504/libfguid/Makefile.in +0 -792
  666. libfwevt-20240504/libfguid/libfguid_definitions.h +0 -84
  667. libfwevt-20240504/libfguid/libfguid_error.c +0 -111
  668. libfwevt-20240504/libfguid/libfguid_error.h +0 -74
  669. libfwevt-20240504/libfguid/libfguid_extern.h +0 -46
  670. libfwevt-20240504/libfguid/libfguid_identifier.c +0 -2524
  671. libfwevt-20240504/libfguid/libfguid_identifier.h +0 -204
  672. libfwevt-20240504/libfguid/libfguid_libcerror.h +0 -50
  673. libfwevt-20240504/libfguid/libfguid_support.c +0 -41
  674. libfwevt-20240504/libfguid/libfguid_support.h +0 -47
  675. libfwevt-20240504/libfguid/libfguid_types.h +0 -47
  676. libfwevt-20240504/libfguid/libfguid_unused.h +0 -44
  677. libfwevt-20240504/libfwevt/Makefile.in +0 -1004
  678. libfwevt-20240504/libfwevt/fwevt_template.h +0 -557
  679. libfwevt-20240504/libfwevt/libfwevt.c +0 -80
  680. libfwevt-20240504/libfwevt/libfwevt.rc +0 -38
  681. libfwevt-20240504/libfwevt/libfwevt.rc.in +0 -38
  682. libfwevt-20240504/libfwevt/libfwevt_channel.c +0 -698
  683. libfwevt-20240504/libfwevt/libfwevt_channel.h +0 -110
  684. libfwevt-20240504/libfwevt/libfwevt_data_segment.c +0 -274
  685. libfwevt-20240504/libfwevt/libfwevt_data_segment.h +0 -94
  686. libfwevt-20240504/libfwevt/libfwevt_date_time.c +0 -468
  687. libfwevt-20240504/libfwevt/libfwevt_date_time.h +0 -45
  688. libfwevt-20240504/libfwevt/libfwevt_debug.c +0 -689
  689. libfwevt-20240504/libfwevt/libfwevt_debug.h +0 -70
  690. libfwevt-20240504/libfwevt/libfwevt_definitions.h +0 -168
  691. libfwevt-20240504/libfwevt/libfwevt_definitions.h.in +0 -168
  692. libfwevt-20240504/libfwevt/libfwevt_error.c +0 -111
  693. libfwevt-20240504/libfwevt/libfwevt_error.h +0 -74
  694. libfwevt-20240504/libfwevt/libfwevt_event.c +0 -545
  695. libfwevt-20240504/libfwevt/libfwevt_event.h +0 -122
  696. libfwevt-20240504/libfwevt/libfwevt_extern.h +0 -46
  697. libfwevt-20240504/libfwevt/libfwevt_floating_point.c +0 -1296
  698. libfwevt-20240504/libfwevt/libfwevt_floating_point.h +0 -77
  699. libfwevt-20240504/libfwevt/libfwevt_integer.c +0 -866
  700. libfwevt-20240504/libfwevt/libfwevt_integer.h +0 -102
  701. libfwevt-20240504/libfwevt/libfwevt_keyword.c +0 -378
  702. libfwevt-20240504/libfwevt/libfwevt_keyword.h +0 -70
  703. libfwevt-20240504/libfwevt/libfwevt_level.c +0 -377
  704. libfwevt-20240504/libfwevt/libfwevt_level.h +0 -70
  705. libfwevt-20240504/libfwevt/libfwevt_libcdata.h +0 -54
  706. libfwevt-20240504/libfwevt/libfwevt_libcerror.h +0 -50
  707. libfwevt-20240504/libfwevt/libfwevt_libcnotify.h +0 -50
  708. libfwevt-20240504/libfwevt/libfwevt_libfdatetime.h +0 -56
  709. libfwevt-20240504/libfwevt/libfwevt_libfguid.h +0 -49
  710. libfwevt-20240504/libfwevt/libfwevt_libfwnt.h +0 -58
  711. libfwevt-20240504/libfwevt/libfwevt_libuna.h +0 -60
  712. libfwevt-20240504/libfwevt/libfwevt_manifest.c +0 -839
  713. libfwevt-20240504/libfwevt/libfwevt_manifest.h +0 -97
  714. libfwevt-20240504/libfwevt/libfwevt_map.c +0 -275
  715. libfwevt-20240504/libfwevt/libfwevt_map.h +0 -70
  716. libfwevt-20240504/libfwevt/libfwevt_notify.c +0 -120
  717. libfwevt-20240504/libfwevt/libfwevt_notify.h +0 -63
  718. libfwevt-20240504/libfwevt/libfwevt_opcode.c +0 -378
  719. libfwevt-20240504/libfwevt/libfwevt_opcode.h +0 -70
  720. libfwevt-20240504/libfwevt/libfwevt_provider.c +0 -4270
  721. libfwevt-20240504/libfwevt/libfwevt_provider.h +0 -325
  722. libfwevt-20240504/libfwevt/libfwevt_support.c +0 -41
  723. libfwevt-20240504/libfwevt/libfwevt_support.h +0 -47
  724. libfwevt-20240504/libfwevt/libfwevt_task.c +0 -402
  725. libfwevt-20240504/libfwevt/libfwevt_task.h +0 -70
  726. libfwevt-20240504/libfwevt/libfwevt_template.c +0 -1616
  727. libfwevt-20240504/libfwevt/libfwevt_template.h +0 -194
  728. libfwevt-20240504/libfwevt/libfwevt_template_item.c +0 -869
  729. libfwevt-20240504/libfwevt/libfwevt_template_item.h +0 -145
  730. libfwevt-20240504/libfwevt/libfwevt_types.h +0 -75
  731. libfwevt-20240504/libfwevt/libfwevt_unused.h +0 -44
  732. libfwevt-20240504/libfwevt/libfwevt_xml_document.c +0 -6739
  733. libfwevt-20240504/libfwevt/libfwevt_xml_document.h +0 -311
  734. libfwevt-20240504/libfwevt/libfwevt_xml_string.c +0 -984
  735. libfwevt-20240504/libfwevt/libfwevt_xml_string.h +0 -72
  736. libfwevt-20240504/libfwevt/libfwevt_xml_tag.c +0 -4655
  737. libfwevt-20240504/libfwevt/libfwevt_xml_tag.h +0 -305
  738. libfwevt-20240504/libfwevt/libfwevt_xml_template_value.c +0 -412
  739. libfwevt-20240504/libfwevt/libfwevt_xml_template_value.h +0 -109
  740. libfwevt-20240504/libfwevt/libfwevt_xml_token.c +0 -236
  741. libfwevt-20240504/libfwevt/libfwevt_xml_token.h +0 -67
  742. libfwevt-20240504/libfwevt/libfwevt_xml_value.c +0 -3611
  743. libfwevt-20240504/libfwevt/libfwevt_xml_value.h +0 -266
  744. libfwevt-20240504/libfwevt.spec +0 -85
  745. libfwevt-20240504/libfwnt/Makefile.in +0 -869
  746. libfwevt-20240504/libfwnt/libfwnt_access_control_entry.c +0 -764
  747. libfwevt-20240504/libfwnt/libfwnt_access_control_entry.h +0 -116
  748. libfwevt-20240504/libfwnt/libfwnt_access_control_list.c +0 -518
  749. libfwevt-20240504/libfwnt/libfwnt_access_control_list.h +0 -93
  750. libfwevt-20240504/libfwnt/libfwnt_bit_stream.c +0 -308
  751. libfwevt-20240504/libfwnt/libfwnt_bit_stream.h +0 -85
  752. libfwevt-20240504/libfwnt/libfwnt_debug.c +0 -355
  753. libfwevt-20240504/libfwnt/libfwnt_debug.h +0 -53
  754. libfwevt-20240504/libfwnt/libfwnt_definitions.h +0 -112
  755. libfwevt-20240504/libfwnt/libfwnt_error.c +0 -111
  756. libfwevt-20240504/libfwnt/libfwnt_error.h +0 -74
  757. libfwevt-20240504/libfwnt/libfwnt_extern.h +0 -46
  758. libfwevt-20240504/libfwnt/libfwnt_huffman_tree.c +0 -589
  759. libfwevt-20240504/libfwnt/libfwnt_huffman_tree.h +0 -79
  760. libfwevt-20240504/libfwnt/libfwnt_libcdata.h +0 -54
  761. libfwevt-20240504/libfwnt/libfwnt_libcerror.h +0 -50
  762. libfwevt-20240504/libfwnt/libfwnt_libcnotify.h +0 -50
  763. libfwevt-20240504/libfwnt/libfwnt_locale_identifier.c +0 -470
  764. libfwevt-20240504/libfwnt/libfwnt_locale_identifier.h +0 -60
  765. libfwevt-20240504/libfwnt/libfwnt_lznt1.c +0 -560
  766. libfwevt-20240504/libfwnt/libfwnt_lznt1.h +0 -57
  767. libfwevt-20240504/libfwnt/libfwnt_lzx.c +0 -1465
  768. libfwevt-20240504/libfwnt/libfwnt_lzx.h +0 -95
  769. libfwevt-20240504/libfwnt/libfwnt_lzxpress.c +0 -1041
  770. libfwevt-20240504/libfwnt/libfwnt_lzxpress.h +0 -86
  771. libfwevt-20240504/libfwnt/libfwnt_notify.c +0 -120
  772. libfwevt-20240504/libfwnt/libfwnt_notify.h +0 -63
  773. libfwevt-20240504/libfwnt/libfwnt_security_descriptor.c +0 -1028
  774. libfwevt-20240504/libfwnt/libfwnt_security_descriptor.h +0 -116
  775. libfwevt-20240504/libfwnt/libfwnt_security_identifier.c +0 -1176
  776. libfwevt-20240504/libfwnt/libfwnt_security_identifier.h +0 -166
  777. libfwevt-20240504/libfwnt/libfwnt_support.c +0 -41
  778. libfwevt-20240504/libfwnt/libfwnt_support.h +0 -47
  779. libfwevt-20240504/libfwnt/libfwnt_types.h +0 -53
  780. libfwevt-20240504/libfwnt/libfwnt_unused.h +0 -44
  781. libfwevt-20240504/libuna/Makefile.in +0 -1211
  782. libfwevt-20240504/libuna/libuna_base16_stream.c +0 -1511
  783. libfwevt-20240504/libuna/libuna_base16_stream.h +0 -93
  784. libfwevt-20240504/libuna/libuna_base32_stream.c +0 -3035
  785. libfwevt-20240504/libuna/libuna_base32_stream.h +0 -131
  786. libfwevt-20240504/libuna/libuna_base64_stream.c +0 -2832
  787. libfwevt-20240504/libuna/libuna_base64_stream.h +0 -131
  788. libfwevt-20240504/libuna/libuna_byte_stream.c +0 -633
  789. libfwevt-20240504/libuna/libuna_byte_stream.h +0 -104
  790. libfwevt-20240504/libuna/libuna_codepage_iso_8859_10.c +0 -73
  791. libfwevt-20240504/libuna/libuna_codepage_iso_8859_10.h +0 -48
  792. libfwevt-20240504/libuna/libuna_codepage_iso_8859_13.c +0 -81
  793. libfwevt-20240504/libuna/libuna_codepage_iso_8859_13.h +0 -48
  794. libfwevt-20240504/libuna/libuna_codepage_iso_8859_14.c +0 -66
  795. libfwevt-20240504/libuna/libuna_codepage_iso_8859_14.h +0 -51
  796. libfwevt-20240504/libuna/libuna_codepage_iso_8859_15.c +0 -46
  797. libfwevt-20240504/libuna/libuna_codepage_iso_8859_15.h +0 -45
  798. libfwevt-20240504/libuna/libuna_codepage_iso_8859_16.c +0 -78
  799. libfwevt-20240504/libuna/libuna_codepage_iso_8859_16.h +0 -57
  800. libfwevt-20240504/libuna/libuna_codepage_iso_8859_2.c +0 -82
  801. libfwevt-20240504/libuna/libuna_codepage_iso_8859_2.h +0 -51
  802. libfwevt-20240504/libuna/libuna_codepage_iso_8859_3.c +0 -79
  803. libfwevt-20240504/libuna/libuna_codepage_iso_8859_3.h +0 -57
  804. libfwevt-20240504/libuna/libuna_codepage_iso_8859_4.c +0 -80
  805. libfwevt-20240504/libuna/libuna_codepage_iso_8859_4.h +0 -48
  806. libfwevt-20240504/libuna/libuna_codepage_iso_8859_5.c +0 -62
  807. libfwevt-20240504/libuna/libuna_codepage_iso_8859_5.h +0 -45
  808. libfwevt-20240504/libuna/libuna_codepage_iso_8859_6.c +0 -58
  809. libfwevt-20240504/libuna/libuna_codepage_iso_8859_6.h +0 -45
  810. libfwevt-20240504/libuna/libuna_codepage_iso_8859_7.c +0 -66
  811. libfwevt-20240504/libuna/libuna_codepage_iso_8859_7.h +0 -48
  812. libfwevt-20240504/libuna/libuna_codepage_iso_8859_8.c +0 -61
  813. libfwevt-20240504/libuna/libuna_codepage_iso_8859_8.h +0 -48
  814. libfwevt-20240504/libuna/libuna_codepage_iso_8859_9.c +0 -50
  815. libfwevt-20240504/libuna/libuna_codepage_iso_8859_9.h +0 -45
  816. libfwevt-20240504/libuna/libuna_codepage_koi8_r.c +0 -392
  817. libfwevt-20240504/libuna/libuna_codepage_koi8_r.h +0 -54
  818. libfwevt-20240504/libuna/libuna_codepage_koi8_u.c +0 -424
  819. libfwevt-20240504/libuna/libuna_codepage_koi8_u.h +0 -54
  820. libfwevt-20240504/libuna/libuna_codepage_mac_arabic.c +0 -352
  821. libfwevt-20240504/libuna/libuna_codepage_mac_arabic.h +0 -54
  822. libfwevt-20240504/libuna/libuna_codepage_mac_celtic.c +0 -395
  823. libfwevt-20240504/libuna/libuna_codepage_mac_celtic.h +0 -54
  824. libfwevt-20240504/libuna/libuna_codepage_mac_centraleurroman.c +0 -319
  825. libfwevt-20240504/libuna/libuna_codepage_mac_centraleurroman.h +0 -54
  826. libfwevt-20240504/libuna/libuna_codepage_mac_croatian.c +0 -378
  827. libfwevt-20240504/libuna/libuna_codepage_mac_croatian.h +0 -54
  828. libfwevt-20240504/libuna/libuna_codepage_mac_cyrillic.c +0 -325
  829. libfwevt-20240504/libuna/libuna_codepage_mac_cyrillic.h +0 -54
  830. libfwevt-20240504/libuna/libuna_codepage_mac_dingbats.c +0 -347
  831. libfwevt-20240504/libuna/libuna_codepage_mac_dingbats.h +0 -54
  832. libfwevt-20240504/libuna/libuna_codepage_mac_farsi.c +0 -372
  833. libfwevt-20240504/libuna/libuna_codepage_mac_farsi.h +0 -54
  834. libfwevt-20240504/libuna/libuna_codepage_mac_gaelic.c +0 -437
  835. libfwevt-20240504/libuna/libuna_codepage_mac_gaelic.h +0 -54
  836. libfwevt-20240504/libuna/libuna_codepage_mac_greek.c +0 -305
  837. libfwevt-20240504/libuna/libuna_codepage_mac_greek.h +0 -54
  838. libfwevt-20240504/libuna/libuna_codepage_mac_icelandic.c +0 -381
  839. libfwevt-20240504/libuna/libuna_codepage_mac_icelandic.h +0 -54
  840. libfwevt-20240504/libuna/libuna_codepage_mac_inuit.c +0 -380
  841. libfwevt-20240504/libuna/libuna_codepage_mac_inuit.h +0 -54
  842. libfwevt-20240504/libuna/libuna_codepage_mac_roman.c +0 -387
  843. libfwevt-20240504/libuna/libuna_codepage_mac_roman.h +0 -54
  844. libfwevt-20240504/libuna/libuna_codepage_mac_romanian.c +0 -396
  845. libfwevt-20240504/libuna/libuna_codepage_mac_romanian.h +0 -54
  846. libfwevt-20240504/libuna/libuna_codepage_mac_russian.c +0 -317
  847. libfwevt-20240504/libuna/libuna_codepage_mac_russian.h +0 -54
  848. libfwevt-20240504/libuna/libuna_codepage_mac_symbol.c +0 -537
  849. libfwevt-20240504/libuna/libuna_codepage_mac_symbol.h +0 -59
  850. libfwevt-20240504/libuna/libuna_codepage_mac_thai.c +0 -330
  851. libfwevt-20240504/libuna/libuna_codepage_mac_thai.h +0 -59
  852. libfwevt-20240504/libuna/libuna_codepage_mac_turkish.c +0 -397
  853. libfwevt-20240504/libuna/libuna_codepage_mac_turkish.h +0 -54
  854. libfwevt-20240504/libuna/libuna_codepage_mac_ukrainian.c +0 -321
  855. libfwevt-20240504/libuna/libuna_codepage_mac_ukrainian.h +0 -54
  856. libfwevt-20240504/libuna/libuna_codepage_windows_1250.c +0 -313
  857. libfwevt-20240504/libuna/libuna_codepage_windows_1250.h +0 -54
  858. libfwevt-20240504/libuna/libuna_codepage_windows_1251.c +0 -301
  859. libfwevt-20240504/libuna/libuna_codepage_windows_1251.h +0 -54
  860. libfwevt-20240504/libuna/libuna_codepage_windows_1252.c +0 -287
  861. libfwevt-20240504/libuna/libuna_codepage_windows_1252.h +0 -54
  862. libfwevt-20240504/libuna/libuna_codepage_windows_1253.c +0 -291
  863. libfwevt-20240504/libuna/libuna_codepage_windows_1253.h +0 -54
  864. libfwevt-20240504/libuna/libuna_codepage_windows_1254.c +0 -348
  865. libfwevt-20240504/libuna/libuna_codepage_windows_1254.h +0 -54
  866. libfwevt-20240504/libuna/libuna_codepage_windows_1255.c +0 -328
  867. libfwevt-20240504/libuna/libuna_codepage_windows_1255.h +0 -54
  868. libfwevt-20240504/libuna/libuna_codepage_windows_1256.c +0 -372
  869. libfwevt-20240504/libuna/libuna_codepage_windows_1256.h +0 -54
  870. libfwevt-20240504/libuna/libuna_codepage_windows_1257.c +0 -303
  871. libfwevt-20240504/libuna/libuna_codepage_windows_1257.h +0 -54
  872. libfwevt-20240504/libuna/libuna_codepage_windows_1258.c +0 -349
  873. libfwevt-20240504/libuna/libuna_codepage_windows_1258.h +0 -54
  874. libfwevt-20240504/libuna/libuna_codepage_windows_874.c +0 -274
  875. libfwevt-20240504/libuna/libuna_codepage_windows_874.h +0 -54
  876. libfwevt-20240504/libuna/libuna_codepage_windows_932.c +0 -4913
  877. libfwevt-20240504/libuna/libuna_codepage_windows_932.h +0 -59
  878. libfwevt-20240504/libuna/libuna_codepage_windows_936.c +0 -7371
  879. libfwevt-20240504/libuna/libuna_codepage_windows_936.h +0 -59
  880. libfwevt-20240504/libuna/libuna_codepage_windows_949.c +0 -8168
  881. libfwevt-20240504/libuna/libuna_codepage_windows_949.h +0 -59
  882. libfwevt-20240504/libuna/libuna_codepage_windows_950.c +0 -6390
  883. libfwevt-20240504/libuna/libuna_codepage_windows_950.h +0 -59
  884. libfwevt-20240504/libuna/libuna_definitions.h +0 -436
  885. libfwevt-20240504/libuna/libuna_error.c +0 -111
  886. libfwevt-20240504/libuna/libuna_error.h +0 -74
  887. libfwevt-20240504/libuna/libuna_extern.h +0 -46
  888. libfwevt-20240504/libuna/libuna_libcerror.h +0 -50
  889. libfwevt-20240504/libuna/libuna_scsu.c +0 -64
  890. libfwevt-20240504/libuna/libuna_scsu.h +0 -45
  891. libfwevt-20240504/libuna/libuna_support.c +0 -39
  892. libfwevt-20240504/libuna/libuna_support.h +0 -49
  893. libfwevt-20240504/libuna/libuna_types.h +0 -53
  894. libfwevt-20240504/libuna/libuna_unicode_character.c +0 -5784
  895. libfwevt-20240504/libuna/libuna_unicode_character.h +0 -260
  896. libfwevt-20240504/libuna/libuna_unused.h +0 -44
  897. libfwevt-20240504/libuna/libuna_url_stream.c +0 -584
  898. libfwevt-20240504/libuna/libuna_url_stream.h +0 -71
  899. libfwevt-20240504/libuna/libuna_utf16_stream.c +0 -815
  900. libfwevt-20240504/libuna/libuna_utf16_stream.h +0 -109
  901. libfwevt-20240504/libuna/libuna_utf16_string.c +0 -3950
  902. libfwevt-20240504/libuna/libuna_utf16_string.h +0 -325
  903. libfwevt-20240504/libuna/libuna_utf32_stream.c +0 -819
  904. libfwevt-20240504/libuna/libuna_utf32_stream.h +0 -109
  905. libfwevt-20240504/libuna/libuna_utf32_string.c +0 -3808
  906. libfwevt-20240504/libuna/libuna_utf32_string.h +0 -321
  907. libfwevt-20240504/libuna/libuna_utf7_stream.c +0 -628
  908. libfwevt-20240504/libuna/libuna_utf7_stream.h +0 -98
  909. libfwevt-20240504/libuna/libuna_utf8_stream.c +0 -748
  910. libfwevt-20240504/libuna/libuna_utf8_stream.h +0 -105
  911. libfwevt-20240504/libuna/libuna_utf8_string.c +0 -4092
  912. libfwevt-20240504/libuna/libuna_utf8_string.h +0 -329
  913. libfwevt-20240504/ltmain.sh +0 -11429
  914. libfwevt-20240504/m4/common.m4 +0 -578
  915. libfwevt-20240504/m4/libcdata.m4 +0 -599
  916. libfwevt-20240504/m4/libcerror.m4 +0 -237
  917. libfwevt-20240504/m4/libcnotify.m4 +0 -209
  918. libfwevt-20240504/m4/libcthreads.m4 +0 -385
  919. libfwevt-20240504/m4/libfdatetime.m4 +0 -560
  920. libfwevt-20240504/m4/libfguid.m4 +0 -210
  921. libfwevt-20240504/m4/libfwnt.m4 +0 -320
  922. libfwevt-20240504/m4/libtool.m4 +0 -8403
  923. libfwevt-20240504/m4/libuna.m4 +0 -1044
  924. libfwevt-20240504/m4/pthread.m4 +0 -196
  925. libfwevt-20240504/m4/python.m4 +0 -208
  926. libfwevt-20240504/m4/tests.m4 +0 -33
  927. libfwevt-20240504/m4/types.m4 +0 -133
  928. libfwevt-20240504/manuals/Makefile.in +0 -688
  929. libfwevt-20240504/manuals/libfwevt.3 +0 -278
  930. libfwevt-20240504/msvscpp/Makefile.in +0 -642
  931. libfwevt-20240504/ossfuzz/Makefile.in +0 -862
  932. libfwevt-20240504/ossfuzz/manifest_fuzzer.cc +0 -57
  933. libfwevt-20240504/ossfuzz/ossfuzz_libfwevt.h +0 -30
  934. libfwevt-20240504/ossfuzz/xml_document_fuzzer.cc +0 -60
  935. libfwevt-20240504/pyfwevt/Makefile.in +0 -1177
  936. libfwevt-20240504/pyfwevt/pyfwevt.c +0 -554
  937. libfwevt-20240504/pyfwevt/pyfwevt.h +0 -51
  938. libfwevt-20240504/pyfwevt/pyfwevt_channel.c +0 -501
  939. libfwevt-20240504/pyfwevt/pyfwevt_channel.h +0 -80
  940. libfwevt-20240504/pyfwevt/pyfwevt_channels.c +0 -460
  941. libfwevt-20240504/pyfwevt/pyfwevt_channels.h +0 -97
  942. libfwevt-20240504/pyfwevt/pyfwevt_error.c +0 -422
  943. libfwevt-20240504/pyfwevt/pyfwevt_error.h +0 -60
  944. libfwevt-20240504/pyfwevt/pyfwevt_event.c +0 -573
  945. libfwevt-20240504/pyfwevt/pyfwevt_event.h +0 -88
  946. libfwevt-20240504/pyfwevt/pyfwevt_events.c +0 -460
  947. libfwevt-20240504/pyfwevt/pyfwevt_events.h +0 -97
  948. libfwevt-20240504/pyfwevt/pyfwevt_guid.c +0 -130
  949. libfwevt-20240504/pyfwevt/pyfwevt_guid.h +0 -43
  950. libfwevt-20240504/pyfwevt/pyfwevt_integer.c +0 -399
  951. libfwevt-20240504/pyfwevt/pyfwevt_integer.h +0 -56
  952. libfwevt-20240504/pyfwevt/pyfwevt_keyword.c +0 -302
  953. libfwevt-20240504/pyfwevt/pyfwevt_keyword.h +0 -72
  954. libfwevt-20240504/pyfwevt/pyfwevt_keywords.c +0 -460
  955. libfwevt-20240504/pyfwevt/pyfwevt_keywords.h +0 -97
  956. libfwevt-20240504/pyfwevt/pyfwevt_level.c +0 -299
  957. libfwevt-20240504/pyfwevt/pyfwevt_level.h +0 -72
  958. libfwevt-20240504/pyfwevt/pyfwevt_levels.c +0 -457
  959. libfwevt-20240504/pyfwevt/pyfwevt_levels.h +0 -97
  960. libfwevt-20240504/pyfwevt/pyfwevt_libcerror.h +0 -50
  961. libfwevt-20240504/pyfwevt/pyfwevt_libfguid.h +0 -49
  962. libfwevt-20240504/pyfwevt/pyfwevt_libfwevt.h +0 -30
  963. libfwevt-20240504/pyfwevt/pyfwevt_manifest.c +0 -684
  964. libfwevt-20240504/pyfwevt/pyfwevt_manifest.h +0 -94
  965. libfwevt-20240504/pyfwevt/pyfwevt_map.c +0 -302
  966. libfwevt-20240504/pyfwevt/pyfwevt_map.h +0 -72
  967. libfwevt-20240504/pyfwevt/pyfwevt_maps.c +0 -460
  968. libfwevt-20240504/pyfwevt/pyfwevt_maps.h +0 -97
  969. libfwevt-20240504/pyfwevt/pyfwevt_opcode.c +0 -302
  970. libfwevt-20240504/pyfwevt/pyfwevt_opcode.h +0 -72
  971. libfwevt-20240504/pyfwevt/pyfwevt_opcodes.c +0 -460
  972. libfwevt-20240504/pyfwevt/pyfwevt_opcodes.h +0 -97
  973. libfwevt-20240504/pyfwevt/pyfwevt_provider.c +0 -2461
  974. libfwevt-20240504/pyfwevt/pyfwevt_provider.h +0 -217
  975. libfwevt-20240504/pyfwevt/pyfwevt_providers.c +0 -460
  976. libfwevt-20240504/pyfwevt/pyfwevt_providers.h +0 -97
  977. libfwevt-20240504/pyfwevt/pyfwevt_python.h +0 -83
  978. libfwevt-20240504/pyfwevt/pyfwevt_task.c +0 -302
  979. libfwevt-20240504/pyfwevt/pyfwevt_task.h +0 -72
  980. libfwevt-20240504/pyfwevt/pyfwevt_tasks.c +0 -460
  981. libfwevt-20240504/pyfwevt/pyfwevt_tasks.h +0 -97
  982. libfwevt-20240504/pyfwevt/pyfwevt_template.c +0 -627
  983. libfwevt-20240504/pyfwevt/pyfwevt_template.h +0 -93
  984. libfwevt-20240504/pyfwevt/pyfwevt_template_item.c +0 -696
  985. libfwevt-20240504/pyfwevt/pyfwevt_template_item.h +0 -92
  986. libfwevt-20240504/pyfwevt/pyfwevt_template_items.c +0 -460
  987. libfwevt-20240504/pyfwevt/pyfwevt_template_items.h +0 -97
  988. libfwevt-20240504/pyfwevt/pyfwevt_templates.c +0 -460
  989. libfwevt-20240504/pyfwevt/pyfwevt_templates.h +0 -97
  990. libfwevt-20240504/pyfwevt/pyfwevt_unused.h +0 -44
  991. libfwevt-20240504/pyproject.toml +0 -4
  992. libfwevt-20240504/setup.cfg +0 -16
  993. libfwevt-20240504/setup.cfg.in +0 -16
  994. libfwevt-20240504/setup.py +0 -293
  995. libfwevt-20240504/tests/Makefile.am +0 -335
  996. libfwevt-20240504/tests/Makefile.in +0 -1750
  997. libfwevt-20240504/tests/fwevt_test_channel.c +0 -614
  998. libfwevt-20240504/tests/fwevt_test_data_segment.c +0 -358
  999. libfwevt-20240504/tests/fwevt_test_date_time.c +0 -241
  1000. libfwevt-20240504/tests/fwevt_test_error.c +0 -150
  1001. libfwevt-20240504/tests/fwevt_test_event.c +0 -885
  1002. libfwevt-20240504/tests/fwevt_test_floating_point.c +0 -208
  1003. libfwevt-20240504/tests/fwevt_test_integer.c +0 -228
  1004. libfwevt-20240504/tests/fwevt_test_keyword.c +0 -616
  1005. libfwevt-20240504/tests/fwevt_test_level.c +0 -615
  1006. libfwevt-20240504/tests/fwevt_test_libcerror.h +0 -50
  1007. libfwevt-20240504/tests/fwevt_test_libcnotify.h +0 -50
  1008. libfwevt-20240504/tests/fwevt_test_libfwevt.h +0 -30
  1009. libfwevt-20240504/tests/fwevt_test_libuna.h +0 -60
  1010. libfwevt-20240504/tests/fwevt_test_macros.h +0 -257
  1011. libfwevt-20240504/tests/fwevt_test_manifest.c +0 -1017
  1012. libfwevt-20240504/tests/fwevt_test_map.c +0 -570
  1013. libfwevt-20240504/tests/fwevt_test_memory.c +0 -177
  1014. libfwevt-20240504/tests/fwevt_test_memory.h +0 -52
  1015. libfwevt-20240504/tests/fwevt_test_notify.c +0 -229
  1016. libfwevt-20240504/tests/fwevt_test_opcode.c +0 -614
  1017. libfwevt-20240504/tests/fwevt_test_provider.c +0 -5030
  1018. libfwevt-20240504/tests/fwevt_test_support.c +0 -86
  1019. libfwevt-20240504/tests/fwevt_test_task.c +0 -618
  1020. libfwevt-20240504/tests/fwevt_test_template.c +0 -1263
  1021. libfwevt-20240504/tests/fwevt_test_template_item.c +0 -381
  1022. libfwevt-20240504/tests/fwevt_test_unused.h +0 -50
  1023. libfwevt-20240504/tests/fwevt_test_xml_document.c +0 -5394
  1024. libfwevt-20240504/tests/fwevt_test_xml_tag.c +0 -3591
  1025. libfwevt-20240504/tests/fwevt_test_xml_template_value.c +0 -1100
  1026. libfwevt-20240504/tests/fwevt_test_xml_token.c +0 -505
  1027. libfwevt-20240504/tests/fwevt_test_xml_value.c +0 -1092
  1028. libfwevt-20240504/tests/pyfwevt_test_event.py +0 -151
  1029. libfwevt-20240504/tests/pyfwevt_test_manifest.py +0 -113
  1030. libfwevt-20240504/tests/pyfwevt_test_provider.py +0 -306
  1031. libfwevt-20240504/tests/pyfwevt_test_support.py +0 -37
  1032. libfwevt-20240504/tests/test_library.sh +0 -193
  1033. libfwevt-20240504/tests/test_python_module.sh +0 -195
  1034. libfwevt-20240504/tests/test_runner.sh +0 -1148
  1035. {libfwevt-20240504 → libfwevt_python-20260602}/ABOUT-NLS +0 -0
  1036. {libfwevt-20240504 → libfwevt_python-20260602}/COPYING +0 -0
  1037. {libfwevt-20240504 → libfwevt_python-20260602}/COPYING.LESSER +0 -0
  1038. {libfwevt-20240504 → libfwevt_python-20260602}/ChangeLog +0 -0
  1039. {libfwevt-20240504 → libfwevt_python-20260602}/NEWS +0 -0
  1040. {libfwevt-20240504 → libfwevt_python-20260602}/aclocal.m4 +0 -0
  1041. {libfwevt-20240504 → libfwevt_python-20260602}/common/Makefile.am +0 -0
  1042. {libfwevt-20240504 → libfwevt_python-20260602}/compile +0 -0
  1043. {libfwevt-20240504 → libfwevt_python-20260602}/config.rpath +0 -0
  1044. {libfwevt-20240504 → libfwevt_python-20260602}/depcomp +0 -0
  1045. {libfwevt-20240504 → libfwevt_python-20260602}/dpkg/changelog.in +0 -0
  1046. {libfwevt-20240504 → libfwevt_python-20260602}/dpkg/compat +0 -0
  1047. {libfwevt-20240504 → libfwevt_python-20260602}/dpkg/control +0 -0
  1048. {libfwevt-20240504 → libfwevt_python-20260602}/dpkg/libfwevt-dev.install +0 -0
  1049. {libfwevt-20240504 → libfwevt_python-20260602}/dpkg/libfwevt-python3.install +0 -0
  1050. {libfwevt-20240504 → libfwevt_python-20260602}/dpkg/libfwevt.install +0 -0
  1051. {libfwevt-20240504 → libfwevt_python-20260602}/dpkg/rules +0 -0
  1052. {libfwevt-20240504 → libfwevt_python-20260602}/dpkg/source/format +0 -0
  1053. {libfwevt-20240504 → libfwevt_python-20260602}/include/Makefile.am +0 -0
  1054. {libfwevt-20240504 → libfwevt_python-20260602}/install-sh +0 -0
  1055. {libfwevt-20240504 → libfwevt_python-20260602}/libcdata/Makefile.am +0 -0
  1056. {libfwevt-20240504 → libfwevt_python-20260602}/libcerror/Makefile.am +0 -0
  1057. {libfwevt-20240504 → libfwevt_python-20260602}/libcnotify/Makefile.am +0 -0
  1058. {libfwevt-20240504 → libfwevt_python-20260602}/libcthreads/Makefile.am +0 -0
  1059. {libfwevt-20240504 → libfwevt_python-20260602}/libfdatetime/Makefile.am +0 -0
  1060. {libfwevt-20240504 → libfwevt_python-20260602}/libfguid/Makefile.am +0 -0
  1061. {libfwevt-20240504 → libfwevt_python-20260602}/libfwevt/Makefile.am +0 -0
  1062. {libfwevt-20240504 → libfwevt_python-20260602}/libfwevt.pc.in +0 -0
  1063. {libfwevt-20240504 → libfwevt_python-20260602}/libfwevt.spec.in +0 -0
  1064. {libfwevt-20240504 → libfwevt_python-20260602}/libfwnt/Makefile.am +0 -0
  1065. {libfwevt-20240504 → libfwevt_python-20260602}/libuna/Makefile.am +0 -0
  1066. {libfwevt-20240504 → libfwevt_python-20260602}/m4/gettext.m4 +0 -0
  1067. {libfwevt-20240504 → libfwevt_python-20260602}/m4/host-cpu-c-abi.m4 +0 -0
  1068. {libfwevt-20240504 → libfwevt_python-20260602}/m4/iconv.m4 +0 -0
  1069. {libfwevt-20240504 → libfwevt_python-20260602}/m4/intlmacosx.m4 +0 -0
  1070. {libfwevt-20240504 → libfwevt_python-20260602}/m4/lib-ld.m4 +0 -0
  1071. {libfwevt-20240504 → libfwevt_python-20260602}/m4/lib-link.m4 +0 -0
  1072. {libfwevt-20240504 → libfwevt_python-20260602}/m4/lib-prefix.m4 +0 -0
  1073. {libfwevt-20240504 → libfwevt_python-20260602}/m4/nls.m4 +0 -0
  1074. {libfwevt-20240504 → libfwevt_python-20260602}/m4/po.m4 +0 -0
  1075. {libfwevt-20240504 → libfwevt_python-20260602}/m4/progtest.m4 +0 -0
  1076. {libfwevt-20240504 → libfwevt_python-20260602}/manuals/Makefile.am +0 -0
  1077. {libfwevt-20240504 → libfwevt_python-20260602}/missing +0 -0
  1078. {libfwevt-20240504 → libfwevt_python-20260602}/msvscpp/Makefile.am +0 -0
  1079. {libfwevt-20240504 → libfwevt_python-20260602}/msvscpp/fwevt_test_channel/fwevt_test_channel.vcproj +0 -0
  1080. {libfwevt-20240504 → libfwevt_python-20260602}/msvscpp/fwevt_test_data_segment/fwevt_test_data_segment.vcproj +0 -0
  1081. {libfwevt-20240504 → libfwevt_python-20260602}/msvscpp/fwevt_test_date_time/fwevt_test_date_time.vcproj +0 -0
  1082. {libfwevt-20240504 → libfwevt_python-20260602}/msvscpp/fwevt_test_error/fwevt_test_error.vcproj +0 -0
  1083. {libfwevt-20240504 → libfwevt_python-20260602}/msvscpp/fwevt_test_event/fwevt_test_event.vcproj +0 -0
  1084. {libfwevt-20240504 → libfwevt_python-20260602}/msvscpp/fwevt_test_floating_point/fwevt_test_floating_point.vcproj +0 -0
  1085. {libfwevt-20240504 → libfwevt_python-20260602}/msvscpp/fwevt_test_integer/fwevt_test_integer.vcproj +0 -0
  1086. {libfwevt-20240504 → libfwevt_python-20260602}/msvscpp/fwevt_test_keyword/fwevt_test_keyword.vcproj +0 -0
  1087. {libfwevt-20240504 → libfwevt_python-20260602}/msvscpp/fwevt_test_level/fwevt_test_level.vcproj +0 -0
  1088. {libfwevt-20240504 → libfwevt_python-20260602}/msvscpp/fwevt_test_manifest/fwevt_test_manifest.vcproj +0 -0
  1089. {libfwevt-20240504 → libfwevt_python-20260602}/msvscpp/fwevt_test_map/fwevt_test_map.vcproj +0 -0
  1090. {libfwevt-20240504 → libfwevt_python-20260602}/msvscpp/fwevt_test_notify/fwevt_test_notify.vcproj +0 -0
  1091. {libfwevt-20240504 → libfwevt_python-20260602}/msvscpp/fwevt_test_opcode/fwevt_test_opcode.vcproj +0 -0
  1092. {libfwevt-20240504 → libfwevt_python-20260602}/msvscpp/fwevt_test_provider/fwevt_test_provider.vcproj +0 -0
  1093. {libfwevt-20240504 → libfwevt_python-20260602}/msvscpp/fwevt_test_support/fwevt_test_support.vcproj +0 -0
  1094. {libfwevt-20240504 → libfwevt_python-20260602}/msvscpp/fwevt_test_task/fwevt_test_task.vcproj +0 -0
  1095. {libfwevt-20240504 → libfwevt_python-20260602}/msvscpp/fwevt_test_template/fwevt_test_template.vcproj +0 -0
  1096. {libfwevt-20240504 → libfwevt_python-20260602}/msvscpp/fwevt_test_template_item/fwevt_test_template_item.vcproj +0 -0
  1097. {libfwevt-20240504 → libfwevt_python-20260602}/msvscpp/fwevt_test_xml_document/fwevt_test_xml_document.vcproj +0 -0
  1098. {libfwevt-20240504 → libfwevt_python-20260602}/msvscpp/fwevt_test_xml_tag/fwevt_test_xml_tag.vcproj +0 -0
  1099. {libfwevt-20240504 → libfwevt_python-20260602}/msvscpp/fwevt_test_xml_template_value/fwevt_test_xml_template_value.vcproj +0 -0
  1100. {libfwevt-20240504 → libfwevt_python-20260602}/msvscpp/fwevt_test_xml_token/fwevt_test_xml_token.vcproj +0 -0
  1101. {libfwevt-20240504 → libfwevt_python-20260602}/msvscpp/fwevt_test_xml_value/fwevt_test_xml_value.vcproj +0 -0
  1102. {libfwevt-20240504 → libfwevt_python-20260602}/msvscpp/libcdata/libcdata.vcproj +0 -0
  1103. {libfwevt-20240504 → libfwevt_python-20260602}/msvscpp/libcerror/libcerror.vcproj +0 -0
  1104. {libfwevt-20240504 → libfwevt_python-20260602}/msvscpp/libcnotify/libcnotify.vcproj +0 -0
  1105. {libfwevt-20240504 → libfwevt_python-20260602}/msvscpp/libcthreads/libcthreads.vcproj +0 -0
  1106. {libfwevt-20240504 → libfwevt_python-20260602}/msvscpp/libfdatetime/libfdatetime.vcproj +0 -0
  1107. {libfwevt-20240504 → libfwevt_python-20260602}/msvscpp/libfguid/libfguid.vcproj +0 -0
  1108. {libfwevt-20240504 → libfwevt_python-20260602}/msvscpp/libfwevt/libfwevt.vcproj +0 -0
  1109. {libfwevt-20240504 → libfwevt_python-20260602}/msvscpp/libfwevt.sln +0 -0
  1110. {libfwevt-20240504 → libfwevt_python-20260602}/msvscpp/libfwnt/libfwnt.vcproj +0 -0
  1111. {libfwevt-20240504 → libfwevt_python-20260602}/msvscpp/libuna/libuna.vcproj +0 -0
  1112. {libfwevt-20240504 → libfwevt_python-20260602}/msvscpp/pyfwevt/pyfwevt.vcproj +0 -0
  1113. {libfwevt-20240504 → libfwevt_python-20260602}/ossfuzz/Makefile.am +0 -0
  1114. {libfwevt-20240504 → libfwevt_python-20260602}/po/ChangeLog +0 -0
  1115. {libfwevt-20240504 → libfwevt_python-20260602}/po/Makefile.in.in +0 -0
  1116. {libfwevt-20240504 → libfwevt_python-20260602}/po/Makevars +0 -0
  1117. {libfwevt-20240504 → libfwevt_python-20260602}/po/Makevars.in +0 -0
  1118. {libfwevt-20240504 → libfwevt_python-20260602}/po/POTFILES.in +0 -0
  1119. {libfwevt-20240504 → libfwevt_python-20260602}/po/Rules-quot +0 -0
  1120. {libfwevt-20240504 → libfwevt_python-20260602}/po/boldquot.sed +0 -0
  1121. {libfwevt-20240504 → libfwevt_python-20260602}/po/en@boldquot.header +0 -0
  1122. {libfwevt-20240504 → libfwevt_python-20260602}/po/en@quot.header +0 -0
  1123. {libfwevt-20240504 → libfwevt_python-20260602}/po/insert-header.sin +0 -0
  1124. {libfwevt-20240504 → libfwevt_python-20260602}/po/quot.sed +0 -0
  1125. {libfwevt-20240504 → libfwevt_python-20260602}/po/remove-potcdate.sin +0 -0
  1126. {libfwevt-20240504 → libfwevt_python-20260602}/pyfwevt/Makefile.am +0 -0
  1127. {libfwevt-20240504 → libfwevt_python-20260602}/test-driver +0 -0
  1128. {libfwevt-20240504 → libfwevt_python-20260602}/tests/test_manpage.sh +0 -0
@@ -0,0 +1,4 @@
1
+ Acknowledgements: libfwevt
2
+
3
+ Copyright (C) 2011-2026, Joachim Metz <joachim.metz@gmail.com>
4
+
File without changes
@@ -0,0 +1,89 @@
1
+ ACLOCAL_AMFLAGS = -I m4
2
+
3
+ SUBDIRS = \
4
+ include \
5
+ common \
6
+ libcerror \
7
+ libcthreads \
8
+ libcdata \
9
+ libcnotify \
10
+ libuna \
11
+ libfdatetime \
12
+ libfguid \
13
+ libfwnt \
14
+ libfwevt \
15
+ pyfwevt \
16
+ po \
17
+ manuals \
18
+ tests \
19
+ ossfuzz \
20
+ msvscpp
21
+
22
+ DPKG_FILES = \
23
+ dpkg/changelog \
24
+ dpkg/changelog.in \
25
+ dpkg/compat \
26
+ dpkg/control \
27
+ dpkg/copyright \
28
+ dpkg/rules \
29
+ dpkg/libfwevt-dev.install \
30
+ dpkg/libfwevt.install \
31
+ dpkg/libfwevt-python3.install \
32
+ dpkg/source/format
33
+
34
+ GETTEXT_FILES = \
35
+ config.rpath \
36
+ po/Makevars.in
37
+
38
+ PKGCONFIG_FILES = \
39
+ libfwevt.pc.in
40
+
41
+ SETUP_PY_FILES = \
42
+ _build.py \
43
+ pyproject.toml \
44
+ pyproject.toml.in
45
+
46
+ SPEC_FILES = \
47
+ libfwevt.spec \
48
+ libfwevt.spec.in
49
+
50
+ EXTRA_DIST = \
51
+ $(DPKG_FILES) \
52
+ $(GETTEXT_FILES) \
53
+ $(PKGCONFIG_FILES) \
54
+ $(SETUP_PY_FILES) \
55
+ $(SPEC_FILES)
56
+
57
+ DISTCLEANFILES = \
58
+ config.status \
59
+ config.cache \
60
+ config.log \
61
+ libfwevt.pc \
62
+ libfwevt.spec \
63
+ Makefile \
64
+ Makefile.in \
65
+ po/Makevars
66
+
67
+ pkgconfigdir = $(libdir)/pkgconfig
68
+
69
+ pkgconfig_DATA = \
70
+ libfwevt.pc
71
+
72
+ libtool: @LIBTOOL_DEPS@
73
+ cd $(srcdir) && $(SHELL) ./config.status --recheck
74
+
75
+ lib: library
76
+
77
+ library:
78
+ (cd $(srcdir)/common && $(MAKE) $(AM_MAKEFLAGS))
79
+ (cd $(srcdir)/libcerror && $(MAKE) $(AM_MAKEFLAGS))
80
+ (cd $(srcdir)/libcthreads && $(MAKE) $(AM_MAKEFLAGS))
81
+ (cd $(srcdir)/libcdata && $(MAKE) $(AM_MAKEFLAGS))
82
+ (cd $(srcdir)/libcnotify && $(MAKE) $(AM_MAKEFLAGS))
83
+ (cd $(srcdir)/libuna && $(MAKE) $(AM_MAKEFLAGS))
84
+ (cd $(srcdir)/libfdatetime && $(MAKE) $(AM_MAKEFLAGS))
85
+ (cd $(srcdir)/libfguid && $(MAKE) $(AM_MAKEFLAGS))
86
+ (cd $(srcdir)/libfwnt && $(MAKE) $(AM_MAKEFLAGS))
87
+ (cd $(srcdir)/libfwevt && $(MAKE) $(AM_MAKEFLAGS))
88
+ (cd $(srcdir)/po && $(MAKE) $(AM_MAKEFLAGS))
89
+