libfwevt-python 20240427__tar.gz → 20260522__tar.gz

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