libevtx-python 20251118__tar.gz → 20260705__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 (2190) hide show
  1. libevtx_python-20260705/AUTHORS +4 -0
  2. libevtx_python-20260705/INSTALL +368 -0
  3. libevtx_python-20260705/Makefile.am +117 -0
  4. libevtx_python-20260705/Makefile.in +1288 -0
  5. libevtx_python-20260705/PKG-INFO +33 -0
  6. libevtx_python-20260705/README +16 -0
  7. libevtx_python-20260705/_build.py +275 -0
  8. libevtx_python-20260705/acinclude.m4 +49 -0
  9. libevtx_python-20260705/aclocal.m4 +1554 -0
  10. libevtx_python-20260705/common/Makefile.in +842 -0
  11. libevtx_python-20260705/common/byte_stream.h +312 -0
  12. libevtx_python-20260705/common/common.h +43 -0
  13. libevtx_python-20260705/common/config.h +686 -0
  14. libevtx_python-20260705/common/config.h.in +685 -0
  15. libevtx_python-20260705/common/config_borlandc.h +26 -0
  16. libevtx_python-20260705/common/config_msc.h +34 -0
  17. libevtx_python-20260705/common/config_winapi.h +97 -0
  18. libevtx_python-20260705/common/file_stream.h +151 -0
  19. libevtx_python-20260705/common/memory.h +129 -0
  20. libevtx_python-20260705/common/narrow_string.h +187 -0
  21. libevtx_python-20260705/common/system_string.h +154 -0
  22. libevtx_python-20260705/common/types.h +392 -0
  23. libevtx_python-20260705/common/types.h.in +392 -0
  24. libevtx_python-20260705/common/wide_string.h +175 -0
  25. libevtx_python-20260705/compile +348 -0
  26. libevtx_python-20260705/config.guess +1754 -0
  27. libevtx_python-20260705/config.sub +1890 -0
  28. libevtx_python-20260705/configure +75709 -0
  29. libevtx_python-20260705/configure.ac +287 -0
  30. libevtx_python-20260705/depcomp +791 -0
  31. libevtx_python-20260705/dpkg/changelog +5 -0
  32. libevtx_python-20260705/dpkg/compat +1 -0
  33. libevtx_python-20260705/dpkg/control +65 -0
  34. libevtx_python-20260705/dpkg/copyright +25 -0
  35. libevtx_python-20260705/dpkg/rules +31 -0
  36. libevtx_python-20260705/evtxtools/Makefile.am +139 -0
  37. libevtx_python-20260705/evtxtools/Makefile.in +1131 -0
  38. libevtx_python-20260705/evtxtools/evtxexport.c +625 -0
  39. libevtx_python-20260705/evtxtools/evtxinfo.c +355 -0
  40. libevtx_python-20260705/evtxtools/evtxinput.c +251 -0
  41. libevtx_python-20260705/evtxtools/evtxinput.h +62 -0
  42. libevtx_python-20260705/evtxtools/evtxtools_getopt.c +572 -0
  43. libevtx_python-20260705/evtxtools/evtxtools_getopt.h +106 -0
  44. libevtx_python-20260705/evtxtools/evtxtools_i18n.h +48 -0
  45. libevtx_python-20260705/evtxtools/evtxtools_libbfio.h +58 -0
  46. libevtx_python-20260705/evtxtools/evtxtools_libcdirectory.h +50 -0
  47. libevtx_python-20260705/evtxtools/evtxtools_libcerror.h +50 -0
  48. libevtx_python-20260705/evtxtools/evtxtools_libclocale.h +50 -0
  49. libevtx_python-20260705/evtxtools/evtxtools_libcnotify.h +50 -0
  50. libevtx_python-20260705/evtxtools/evtxtools_libcpath.h +48 -0
  51. libevtx_python-20260705/evtxtools/evtxtools_libcsplit.h +52 -0
  52. libevtx_python-20260705/evtxtools/evtxtools_libevtx.h +30 -0
  53. libevtx_python-20260705/evtxtools/evtxtools_libexe.h +50 -0
  54. libevtx_python-20260705/evtxtools/evtxtools_libfcache.h +50 -0
  55. libevtx_python-20260705/evtxtools/evtxtools_libfdatetime.h +56 -0
  56. libevtx_python-20260705/evtxtools/evtxtools_libfguid.h +49 -0
  57. libevtx_python-20260705/evtxtools/evtxtools_libfvalue.h +59 -0
  58. libevtx_python-20260705/evtxtools/evtxtools_libfwevt.h +62 -0
  59. libevtx_python-20260705/evtxtools/evtxtools_libfwnt.h +58 -0
  60. libevtx_python-20260705/evtxtools/evtxtools_libregf.h +52 -0
  61. libevtx_python-20260705/evtxtools/evtxtools_libuna.h +60 -0
  62. libevtx_python-20260705/evtxtools/evtxtools_libwrc.h +57 -0
  63. libevtx_python-20260705/evtxtools/evtxtools_output.c +200 -0
  64. libevtx_python-20260705/evtxtools/evtxtools_output.h +55 -0
  65. libevtx_python-20260705/evtxtools/evtxtools_signal.c +262 -0
  66. libevtx_python-20260705/evtxtools/evtxtools_signal.h +72 -0
  67. libevtx_python-20260705/evtxtools/evtxtools_system_split_string.h +73 -0
  68. libevtx_python-20260705/evtxtools/evtxtools_unused.h +50 -0
  69. libevtx_python-20260705/evtxtools/evtxtools_wide_string.c +69 -0
  70. libevtx_python-20260705/evtxtools/evtxtools_wide_string.h +54 -0
  71. libevtx_python-20260705/evtxtools/export_handle.c +3903 -0
  72. libevtx_python-20260705/evtxtools/export_handle.h +288 -0
  73. libevtx_python-20260705/evtxtools/info_handle.c +604 -0
  74. libevtx_python-20260705/evtxtools/info_handle.h +101 -0
  75. libevtx_python-20260705/evtxtools/log_handle.c +276 -0
  76. libevtx_python-20260705/evtxtools/log_handle.h +71 -0
  77. libevtx_python-20260705/evtxtools/message_handle.c +4120 -0
  78. libevtx_python-20260705/evtxtools/message_handle.h +304 -0
  79. libevtx_python-20260705/evtxtools/message_string.c +285 -0
  80. libevtx_python-20260705/evtxtools/message_string.h +71 -0
  81. libevtx_python-20260705/evtxtools/path_handle.c +407 -0
  82. libevtx_python-20260705/evtxtools/path_handle.h +69 -0
  83. libevtx_python-20260705/evtxtools/registry_file.c +903 -0
  84. libevtx_python-20260705/evtxtools/registry_file.h +124 -0
  85. libevtx_python-20260705/evtxtools/resource_file.c +2591 -0
  86. libevtx_python-20260705/evtxtools/resource_file.h +192 -0
  87. libevtx_python-20260705/include/Makefile.in +904 -0
  88. libevtx_python-20260705/include/libevtx/codepage.h +122 -0
  89. libevtx_python-20260705/include/libevtx/definitions.h +73 -0
  90. libevtx_python-20260705/include/libevtx/definitions.h.in +73 -0
  91. libevtx_python-20260705/include/libevtx/error.h +291 -0
  92. libevtx_python-20260705/include/libevtx/extern.h +47 -0
  93. libevtx_python-20260705/include/libevtx/features.h +50 -0
  94. libevtx_python-20260705/include/libevtx/features.h.in +50 -0
  95. libevtx_python-20260705/include/libevtx/types.h +213 -0
  96. libevtx_python-20260705/include/libevtx/types.h.in +213 -0
  97. libevtx_python-20260705/include/libevtx.h +868 -0
  98. libevtx_python-20260705/include/libevtx.h.in +868 -0
  99. libevtx_python-20260705/install-sh +541 -0
  100. libevtx_python-20260705/libbfio/Makefile.in +1005 -0
  101. libevtx_python-20260705/libbfio/libbfio_codepage.h +90 -0
  102. libevtx_python-20260705/libbfio/libbfio_definitions.h +89 -0
  103. libevtx_python-20260705/libbfio/libbfio_error.c +111 -0
  104. libevtx_python-20260705/libbfio/libbfio_error.h +74 -0
  105. libevtx_python-20260705/libbfio/libbfio_extern.h +53 -0
  106. libevtx_python-20260705/libbfio/libbfio_file.c +444 -0
  107. libevtx_python-20260705/libbfio/libbfio_file.h +90 -0
  108. libevtx_python-20260705/libbfio/libbfio_file_io_handle.c +1198 -0
  109. libevtx_python-20260705/libbfio/libbfio_file_io_handle.h +152 -0
  110. libevtx_python-20260705/libbfio/libbfio_file_pool.c +494 -0
  111. libevtx_python-20260705/libbfio/libbfio_file_pool.h +81 -0
  112. libevtx_python-20260705/libbfio/libbfio_file_range.c +468 -0
  113. libevtx_python-20260705/libbfio/libbfio_file_range.h +104 -0
  114. libevtx_python-20260705/libbfio/libbfio_file_range_io_handle.c +1158 -0
  115. libevtx_python-20260705/libbfio/libbfio_file_range_io_handle.h +160 -0
  116. libevtx_python-20260705/libbfio/libbfio_handle.c +2708 -0
  117. libevtx_python-20260705/libbfio/libbfio_handle.h +363 -0
  118. libevtx_python-20260705/libbfio/libbfio_libcdata.h +54 -0
  119. libevtx_python-20260705/libbfio/libbfio_libcerror.h +50 -0
  120. libevtx_python-20260705/libbfio/libbfio_libcfile.h +50 -0
  121. libevtx_python-20260705/libbfio/libbfio_libclocale.h +50 -0
  122. libevtx_python-20260705/libbfio/libbfio_libcpath.h +48 -0
  123. libevtx_python-20260705/libbfio/libbfio_libcthreads.h +64 -0
  124. libevtx_python-20260705/libbfio/libbfio_libuna.h +60 -0
  125. libevtx_python-20260705/libbfio/libbfio_memory_range.c +205 -0
  126. libevtx_python-20260705/libbfio/libbfio_memory_range.h +60 -0
  127. libevtx_python-20260705/libbfio/libbfio_memory_range_io_handle.c +871 -0
  128. libevtx_python-20260705/libbfio/libbfio_memory_range_io_handle.h +129 -0
  129. libevtx_python-20260705/libbfio/libbfio_pool.c +3523 -0
  130. libevtx_python-20260705/libbfio/libbfio_pool.h +275 -0
  131. libevtx_python-20260705/libbfio/libbfio_support.c +93 -0
  132. libevtx_python-20260705/libbfio/libbfio_support.h +58 -0
  133. libevtx_python-20260705/libbfio/libbfio_system_string.c +1017 -0
  134. libevtx_python-20260705/libbfio/libbfio_system_string.h +95 -0
  135. libevtx_python-20260705/libbfio/libbfio_types.h +49 -0
  136. libevtx_python-20260705/libbfio/libbfio_unused.h +44 -0
  137. libevtx_python-20260705/libcdata/Makefile.in +984 -0
  138. libevtx_python-20260705/libcdata/libcdata_array.c +2015 -0
  139. libevtx_python-20260705/libcdata/libcdata_array.h +200 -0
  140. libevtx_python-20260705/libcdata/libcdata_btree.c +964 -0
  141. libevtx_python-20260705/libcdata/libcdata_btree.h +141 -0
  142. libevtx_python-20260705/libcdata/libcdata_btree_node.c +1607 -0
  143. libevtx_python-20260705/libcdata/libcdata_btree_node.h +101 -0
  144. libevtx_python-20260705/libcdata/libcdata_btree_values_list.c +217 -0
  145. libevtx_python-20260705/libcdata/libcdata_btree_values_list.h +55 -0
  146. libevtx_python-20260705/libcdata/libcdata_definitions.h +81 -0
  147. libevtx_python-20260705/libcdata/libcdata_error.c +111 -0
  148. libevtx_python-20260705/libcdata/libcdata_error.h +74 -0
  149. libevtx_python-20260705/libcdata/libcdata_extern.h +53 -0
  150. libevtx_python-20260705/libcdata/libcdata_libcerror.h +50 -0
  151. libevtx_python-20260705/libcdata/libcdata_libcthreads.h +64 -0
  152. libevtx_python-20260705/libcdata/libcdata_list.c +2906 -0
  153. libevtx_python-20260705/libcdata/libcdata_list.h +235 -0
  154. libevtx_python-20260705/libcdata/libcdata_list_element.c +926 -0
  155. libevtx_python-20260705/libcdata/libcdata_list_element.h +142 -0
  156. libevtx_python-20260705/libcdata/libcdata_range_list.c +4922 -0
  157. libevtx_python-20260705/libcdata/libcdata_range_list.h +382 -0
  158. libevtx_python-20260705/libcdata/libcdata_range_list_value.c +429 -0
  159. libevtx_python-20260705/libcdata/libcdata_range_list_value.h +100 -0
  160. libevtx_python-20260705/libcdata/libcdata_support.c +39 -0
  161. libevtx_python-20260705/libcdata/libcdata_support.h +47 -0
  162. libevtx_python-20260705/libcdata/libcdata_tree_node.c +4271 -0
  163. libevtx_python-20260705/libcdata/libcdata_tree_node.h +308 -0
  164. libevtx_python-20260705/libcdata/libcdata_types.h +57 -0
  165. libevtx_python-20260705/libcdata/libcdata_unused.h +44 -0
  166. libevtx_python-20260705/libcdirectory/Makefile.in +956 -0
  167. libevtx_python-20260705/libcdirectory/libcdirectory_definitions.h +68 -0
  168. libevtx_python-20260705/libcdirectory/libcdirectory_directory.c +1967 -0
  169. libevtx_python-20260705/libcdirectory/libcdirectory_directory.h +127 -0
  170. libevtx_python-20260705/libcdirectory/libcdirectory_directory_entry.c +954 -0
  171. libevtx_python-20260705/libcdirectory/libcdirectory_directory_entry.h +121 -0
  172. libevtx_python-20260705/libcdirectory/libcdirectory_error.c +111 -0
  173. libevtx_python-20260705/libcdirectory/libcdirectory_error.h +74 -0
  174. libevtx_python-20260705/libcdirectory/libcdirectory_extern.h +53 -0
  175. libevtx_python-20260705/libcdirectory/libcdirectory_libcerror.h +50 -0
  176. libevtx_python-20260705/libcdirectory/libcdirectory_libclocale.h +50 -0
  177. libevtx_python-20260705/libcdirectory/libcdirectory_libuna.h +60 -0
  178. libevtx_python-20260705/libcdirectory/libcdirectory_support.c +93 -0
  179. libevtx_python-20260705/libcdirectory/libcdirectory_support.h +58 -0
  180. libevtx_python-20260705/libcdirectory/libcdirectory_system_string.c +1017 -0
  181. libevtx_python-20260705/libcdirectory/libcdirectory_system_string.h +95 -0
  182. libevtx_python-20260705/libcdirectory/libcdirectory_types.h +49 -0
  183. libevtx_python-20260705/libcdirectory/libcdirectory_unused.h +44 -0
  184. libevtx_python-20260705/libcdirectory/libcdirectory_wide_string.c +69 -0
  185. libevtx_python-20260705/libcdirectory/libcdirectory_wide_string.h +54 -0
  186. libevtx_python-20260705/libcerror/Makefile.in +926 -0
  187. libevtx_python-20260705/libcerror/libcerror_definitions.h +326 -0
  188. libevtx_python-20260705/libcerror/libcerror_error.c +827 -0
  189. libevtx_python-20260705/libcerror/libcerror_error.h +125 -0
  190. libevtx_python-20260705/libcerror/libcerror_extern.h +53 -0
  191. libevtx_python-20260705/libcerror/libcerror_support.c +39 -0
  192. libevtx_python-20260705/libcerror/libcerror_support.h +47 -0
  193. libevtx_python-20260705/libcerror/libcerror_system.c +569 -0
  194. libevtx_python-20260705/libcerror/libcerror_system.h +78 -0
  195. libevtx_python-20260705/libcerror/libcerror_types.h +51 -0
  196. libevtx_python-20260705/libcerror/libcerror_unused.h +44 -0
  197. libevtx_python-20260705/libcfile/Makefile.in +953 -0
  198. libevtx_python-20260705/libcfile/libcfile_definitions.h +101 -0
  199. libevtx_python-20260705/libcfile/libcfile_error.c +111 -0
  200. libevtx_python-20260705/libcfile/libcfile_error.h +74 -0
  201. libevtx_python-20260705/libcfile/libcfile_extern.h +53 -0
  202. libevtx_python-20260705/libcfile/libcfile_file.c +5022 -0
  203. libevtx_python-20260705/libcfile/libcfile_file.h +277 -0
  204. libevtx_python-20260705/libcfile/libcfile_libcerror.h +50 -0
  205. libevtx_python-20260705/libcfile/libcfile_libclocale.h +50 -0
  206. libevtx_python-20260705/libcfile/libcfile_libcnotify.h +50 -0
  207. libevtx_python-20260705/libcfile/libcfile_libuna.h +60 -0
  208. libevtx_python-20260705/libcfile/libcfile_notify.c +120 -0
  209. libevtx_python-20260705/libcfile/libcfile_notify.h +63 -0
  210. libevtx_python-20260705/libcfile/libcfile_support.c +1171 -0
  211. libevtx_python-20260705/libcfile/libcfile_support.h +98 -0
  212. libevtx_python-20260705/libcfile/libcfile_system_string.c +1017 -0
  213. libevtx_python-20260705/libcfile/libcfile_system_string.h +95 -0
  214. libevtx_python-20260705/libcfile/libcfile_types.h +47 -0
  215. libevtx_python-20260705/libcfile/libcfile_unused.h +44 -0
  216. libevtx_python-20260705/libcfile/libcfile_winapi.c +815 -0
  217. libevtx_python-20260705/libcfile/libcfile_winapi.h +122 -0
  218. libevtx_python-20260705/libclocale/Makefile.in +936 -0
  219. libevtx_python-20260705/libclocale/libclocale_codepage.c +950 -0
  220. libevtx_python-20260705/libclocale/libclocale_codepage.h +73 -0
  221. libevtx_python-20260705/libclocale/libclocale_definitions.h +106 -0
  222. libevtx_python-20260705/libclocale/libclocale_extern.h +53 -0
  223. libevtx_python-20260705/libclocale/libclocale_libcerror.h +50 -0
  224. libevtx_python-20260705/libclocale/libclocale_locale.c +494 -0
  225. libevtx_python-20260705/libclocale/libclocale_locale.h +66 -0
  226. libevtx_python-20260705/libclocale/libclocale_support.c +130 -0
  227. libevtx_python-20260705/libclocale/libclocale_support.h +55 -0
  228. libevtx_python-20260705/libclocale/libclocale_unused.h +44 -0
  229. libevtx_python-20260705/libclocale/libclocale_wide_string.c +69 -0
  230. libevtx_python-20260705/libclocale/libclocale_wide_string.h +54 -0
  231. libevtx_python-20260705/libcnotify/Makefile.in +934 -0
  232. libevtx_python-20260705/libcnotify/libcnotify_definitions.h +54 -0
  233. libevtx_python-20260705/libcnotify/libcnotify_extern.h +53 -0
  234. libevtx_python-20260705/libcnotify/libcnotify_libcerror.h +50 -0
  235. libevtx_python-20260705/libcnotify/libcnotify_print.c +386 -0
  236. libevtx_python-20260705/libcnotify/libcnotify_print.h +68 -0
  237. libevtx_python-20260705/libcnotify/libcnotify_stream.c +182 -0
  238. libevtx_python-20260705/libcnotify/libcnotify_stream.h +59 -0
  239. libevtx_python-20260705/libcnotify/libcnotify_support.c +39 -0
  240. libevtx_python-20260705/libcnotify/libcnotify_support.h +49 -0
  241. libevtx_python-20260705/libcnotify/libcnotify_unused.h +44 -0
  242. libevtx_python-20260705/libcnotify/libcnotify_verbose.c +38 -0
  243. libevtx_python-20260705/libcnotify/libcnotify_verbose.h +46 -0
  244. libevtx_python-20260705/libcpath/Makefile.in +938 -0
  245. libevtx_python-20260705/libcpath/libcpath_definitions.h +79 -0
  246. libevtx_python-20260705/libcpath/libcpath_error.c +111 -0
  247. libevtx_python-20260705/libcpath/libcpath_error.h +74 -0
  248. libevtx_python-20260705/libcpath/libcpath_extern.h +53 -0
  249. libevtx_python-20260705/libcpath/libcpath_libcerror.h +50 -0
  250. libevtx_python-20260705/libcpath/libcpath_libclocale.h +50 -0
  251. libevtx_python-20260705/libcpath/libcpath_libcsplit.h +52 -0
  252. libevtx_python-20260705/libcpath/libcpath_libuna.h +60 -0
  253. libevtx_python-20260705/libcpath/libcpath_path.c +7508 -0
  254. libevtx_python-20260705/libcpath/libcpath_path.h +293 -0
  255. libevtx_python-20260705/libcpath/libcpath_support.c +93 -0
  256. libevtx_python-20260705/libcpath/libcpath_support.h +58 -0
  257. libevtx_python-20260705/libcpath/libcpath_system_string.c +1017 -0
  258. libevtx_python-20260705/libcpath/libcpath_system_string.h +95 -0
  259. libevtx_python-20260705/libcpath/libcpath_unused.h +44 -0
  260. libevtx_python-20260705/libcsplit/Makefile.in +951 -0
  261. libevtx_python-20260705/libcsplit/libcsplit_definitions.h +47 -0
  262. libevtx_python-20260705/libcsplit/libcsplit_error.c +111 -0
  263. libevtx_python-20260705/libcsplit/libcsplit_error.h +74 -0
  264. libevtx_python-20260705/libcsplit/libcsplit_extern.h +53 -0
  265. libevtx_python-20260705/libcsplit/libcsplit_libcerror.h +50 -0
  266. libevtx_python-20260705/libcsplit/libcsplit_narrow_split_string.c +547 -0
  267. libevtx_python-20260705/libcsplit/libcsplit_narrow_split_string.h +107 -0
  268. libevtx_python-20260705/libcsplit/libcsplit_narrow_string.c +288 -0
  269. libevtx_python-20260705/libcsplit/libcsplit_narrow_string.h +49 -0
  270. libevtx_python-20260705/libcsplit/libcsplit_support.c +39 -0
  271. libevtx_python-20260705/libcsplit/libcsplit_support.h +47 -0
  272. libevtx_python-20260705/libcsplit/libcsplit_types.h +49 -0
  273. libevtx_python-20260705/libcsplit/libcsplit_unused.h +44 -0
  274. libevtx_python-20260705/libcsplit/libcsplit_wide_split_string.c +551 -0
  275. libevtx_python-20260705/libcsplit/libcsplit_wide_split_string.h +111 -0
  276. libevtx_python-20260705/libcsplit/libcsplit_wide_string.c +292 -0
  277. libevtx_python-20260705/libcsplit/libcsplit_wide_string.h +53 -0
  278. libevtx_python-20260705/libcthreads/Makefile.in +986 -0
  279. libevtx_python-20260705/libcthreads/libcthreads_condition.c +735 -0
  280. libevtx_python-20260705/libcthreads/libcthreads_condition.h +120 -0
  281. libevtx_python-20260705/libcthreads/libcthreads_definitions.h +84 -0
  282. libevtx_python-20260705/libcthreads/libcthreads_error.c +111 -0
  283. libevtx_python-20260705/libcthreads/libcthreads_error.h +74 -0
  284. libevtx_python-20260705/libcthreads/libcthreads_extern.h +53 -0
  285. libevtx_python-20260705/libcthreads/libcthreads_libcerror.h +50 -0
  286. libevtx_python-20260705/libcthreads/libcthreads_lock.c +391 -0
  287. libevtx_python-20260705/libcthreads/libcthreads_lock.h +88 -0
  288. libevtx_python-20260705/libcthreads/libcthreads_mutex.c +601 -0
  289. libevtx_python-20260705/libcthreads/libcthreads_mutex.h +98 -0
  290. libevtx_python-20260705/libcthreads/libcthreads_queue.c +1150 -0
  291. libevtx_python-20260705/libcthreads/libcthreads_queue.h +136 -0
  292. libevtx_python-20260705/libcthreads/libcthreads_read_write_lock.c +690 -0
  293. libevtx_python-20260705/libcthreads/libcthreads_read_write_lock.h +119 -0
  294. libevtx_python-20260705/libcthreads/libcthreads_repeating_thread.c +683 -0
  295. libevtx_python-20260705/libcthreads/libcthreads_repeating_thread.h +123 -0
  296. libevtx_python-20260705/libcthreads/libcthreads_support.c +39 -0
  297. libevtx_python-20260705/libcthreads/libcthreads_support.h +47 -0
  298. libevtx_python-20260705/libcthreads/libcthreads_thread.c +411 -0
  299. libevtx_python-20260705/libcthreads/libcthreads_thread.h +95 -0
  300. libevtx_python-20260705/libcthreads/libcthreads_thread_attributes.c +149 -0
  301. libevtx_python-20260705/libcthreads/libcthreads_thread_attributes.h +78 -0
  302. libevtx_python-20260705/libcthreads/libcthreads_thread_pool.c +1725 -0
  303. libevtx_python-20260705/libcthreads/libcthreads_thread_pool.h +177 -0
  304. libevtx_python-20260705/libcthreads/libcthreads_types.h +63 -0
  305. libevtx_python-20260705/libcthreads/libcthreads_unused.h +44 -0
  306. libevtx_python-20260705/libevtx/Makefile.in +1108 -0
  307. libevtx_python-20260705/libevtx/evtx_chunk.h +104 -0
  308. libevtx_python-20260705/libevtx/evtx_event_record.h +64 -0
  309. libevtx_python-20260705/libevtx/evtx_file_header.h +104 -0
  310. libevtx_python-20260705/libevtx/libevtx.c +84 -0
  311. libevtx_python-20260705/libevtx/libevtx.rc +38 -0
  312. libevtx_python-20260705/libevtx/libevtx.rc.in +38 -0
  313. libevtx_python-20260705/libevtx/libevtx_byte_stream.c +104 -0
  314. libevtx_python-20260705/libevtx/libevtx_byte_stream.h +44 -0
  315. libevtx_python-20260705/libevtx/libevtx_checksum.c +200 -0
  316. libevtx_python-20260705/libevtx/libevtx_checksum.h +56 -0
  317. libevtx_python-20260705/libevtx/libevtx_chunk.c +1163 -0
  318. libevtx_python-20260705/libevtx/libevtx_chunk.h +109 -0
  319. libevtx_python-20260705/libevtx/libevtx_chunks_table.c +446 -0
  320. libevtx_python-20260705/libevtx/libevtx_chunks_table.h +83 -0
  321. libevtx_python-20260705/libevtx/libevtx_codepage.c +107 -0
  322. libevtx_python-20260705/libevtx/libevtx_codepage.h +116 -0
  323. libevtx_python-20260705/libevtx/libevtx_debug.c +256 -0
  324. libevtx_python-20260705/libevtx/libevtx_debug.h +55 -0
  325. libevtx_python-20260705/libevtx/libevtx_definitions.h +207 -0
  326. libevtx_python-20260705/libevtx/libevtx_definitions.h.in +207 -0
  327. libevtx_python-20260705/libevtx/libevtx_error.c +111 -0
  328. libevtx_python-20260705/libevtx/libevtx_error.h +74 -0
  329. libevtx_python-20260705/libevtx/libevtx_extern.h +53 -0
  330. libevtx_python-20260705/libevtx/libevtx_file.c +2286 -0
  331. libevtx_python-20260705/libevtx/libevtx_file.h +212 -0
  332. libevtx_python-20260705/libevtx/libevtx_i18n.c +65 -0
  333. libevtx_python-20260705/libevtx/libevtx_i18n.h +55 -0
  334. libevtx_python-20260705/libevtx/libevtx_io_handle.c +584 -0
  335. libevtx_python-20260705/libevtx/libevtx_io_handle.h +127 -0
  336. libevtx_python-20260705/libevtx/libevtx_libbfio.h +58 -0
  337. libevtx_python-20260705/libevtx/libevtx_libcdata.h +54 -0
  338. libevtx_python-20260705/libevtx/libevtx_libcerror.h +50 -0
  339. libevtx_python-20260705/libevtx/libevtx_libclocale.h +50 -0
  340. libevtx_python-20260705/libevtx/libevtx_libcnotify.h +50 -0
  341. libevtx_python-20260705/libevtx/libevtx_libfcache.h +50 -0
  342. libevtx_python-20260705/libevtx/libevtx_libfdata.h +54 -0
  343. libevtx_python-20260705/libevtx/libevtx_libfdatetime.h +56 -0
  344. libevtx_python-20260705/libevtx/libevtx_libfguid.h +49 -0
  345. libevtx_python-20260705/libevtx/libevtx_libfwevt.h +62 -0
  346. libevtx_python-20260705/libevtx/libevtx_libuna.h +60 -0
  347. libevtx_python-20260705/libevtx/libevtx_notify.c +120 -0
  348. libevtx_python-20260705/libevtx/libevtx_notify.h +63 -0
  349. libevtx_python-20260705/libevtx/libevtx_record.c +2079 -0
  350. libevtx_python-20260705/libevtx/libevtx_record.h +337 -0
  351. libevtx_python-20260705/libevtx/libevtx_record_values.c +6312 -0
  352. libevtx_python-20260705/libevtx/libevtx_record_values.h +388 -0
  353. libevtx_python-20260705/libevtx/libevtx_support.c +429 -0
  354. libevtx_python-20260705/libevtx/libevtx_support.h +82 -0
  355. libevtx_python-20260705/libevtx/libevtx_template_definition.c +359 -0
  356. libevtx_python-20260705/libevtx/libevtx_template_definition.h +80 -0
  357. libevtx_python-20260705/libevtx/libevtx_types.h +56 -0
  358. libevtx_python-20260705/libevtx/libevtx_unused.h +44 -0
  359. libevtx_python-20260705/libevtx.spec +100 -0
  360. libevtx_python-20260705/libexe/Makefile.in +1051 -0
  361. libevtx_python-20260705/libexe/exe_file_header.h +508 -0
  362. libevtx_python-20260705/libexe/exe_le_header.h +52 -0
  363. libevtx_python-20260705/libexe/exe_mz_header.h +124 -0
  364. libevtx_python-20260705/libexe/exe_ne_header.h +56 -0
  365. libevtx_python-20260705/libexe/exe_pe_header.h +48 -0
  366. libevtx_python-20260705/libexe/exe_section_table.h +93 -0
  367. libevtx_python-20260705/libexe/libexe_codepage.h +90 -0
  368. libevtx_python-20260705/libexe/libexe_coff_header.c +358 -0
  369. libevtx_python-20260705/libexe/libexe_coff_header.h +77 -0
  370. libevtx_python-20260705/libexe/libexe_coff_optional_header.c +1257 -0
  371. libevtx_python-20260705/libexe/libexe_coff_optional_header.h +72 -0
  372. libevtx_python-20260705/libexe/libexe_data_directory_descriptor.h +52 -0
  373. libevtx_python-20260705/libexe/libexe_debug.c +532 -0
  374. libevtx_python-20260705/libexe/libexe_debug.h +67 -0
  375. libevtx_python-20260705/libexe/libexe_debug_data.c +246 -0
  376. libevtx_python-20260705/libexe/libexe_debug_data.h +64 -0
  377. libevtx_python-20260705/libexe/libexe_definitions.h +163 -0
  378. libevtx_python-20260705/libexe/libexe_error.c +111 -0
  379. libevtx_python-20260705/libexe/libexe_error.h +74 -0
  380. libevtx_python-20260705/libexe/libexe_export_table.c +248 -0
  381. libevtx_python-20260705/libexe/libexe_export_table.h +64 -0
  382. libevtx_python-20260705/libexe/libexe_extern.h +53 -0
  383. libevtx_python-20260705/libexe/libexe_file.c +1693 -0
  384. libevtx_python-20260705/libexe/libexe_file.h +165 -0
  385. libevtx_python-20260705/libexe/libexe_import_table.c +248 -0
  386. libevtx_python-20260705/libexe/libexe_import_table.h +64 -0
  387. libevtx_python-20260705/libexe/libexe_io_handle.c +1272 -0
  388. libevtx_python-20260705/libexe/libexe_io_handle.h +142 -0
  389. libevtx_python-20260705/libexe/libexe_le_header.c +297 -0
  390. libevtx_python-20260705/libexe/libexe_le_header.h +69 -0
  391. libevtx_python-20260705/libexe/libexe_libbfio.h +58 -0
  392. libevtx_python-20260705/libexe/libexe_libcdata.h +54 -0
  393. libevtx_python-20260705/libexe/libexe_libcerror.h +50 -0
  394. libevtx_python-20260705/libexe/libexe_libclocale.h +50 -0
  395. libevtx_python-20260705/libexe/libexe_libcnotify.h +50 -0
  396. libevtx_python-20260705/libexe/libexe_libfcache.h +50 -0
  397. libevtx_python-20260705/libexe/libexe_libfdata.h +54 -0
  398. libevtx_python-20260705/libexe/libexe_libfdatetime.h +56 -0
  399. libevtx_python-20260705/libexe/libexe_libuna.h +60 -0
  400. libevtx_python-20260705/libexe/libexe_mz_header.c +440 -0
  401. libevtx_python-20260705/libexe/libexe_mz_header.h +69 -0
  402. libevtx_python-20260705/libexe/libexe_ne_header.c +297 -0
  403. libevtx_python-20260705/libexe/libexe_ne_header.h +69 -0
  404. libevtx_python-20260705/libexe/libexe_notify.c +120 -0
  405. libevtx_python-20260705/libexe/libexe_notify.h +63 -0
  406. libevtx_python-20260705/libexe/libexe_section.c +996 -0
  407. libevtx_python-20260705/libexe/libexe_section.h +164 -0
  408. libevtx_python-20260705/libexe/libexe_section_descriptor.c +320 -0
  409. libevtx_python-20260705/libexe/libexe_section_descriptor.h +87 -0
  410. libevtx_python-20260705/libexe/libexe_section_io_handle.c +651 -0
  411. libevtx_python-20260705/libexe/libexe_section_io_handle.h +111 -0
  412. libevtx_python-20260705/libexe/libexe_support.c +430 -0
  413. libevtx_python-20260705/libexe/libexe_support.h +82 -0
  414. libevtx_python-20260705/libexe/libexe_types.h +49 -0
  415. libevtx_python-20260705/libexe/libexe_unused.h +44 -0
  416. libevtx_python-20260705/libfcache/Makefile.in +947 -0
  417. libevtx_python-20260705/libfcache/libfcache_cache.c +1118 -0
  418. libevtx_python-20260705/libfcache/libfcache_cache.h +149 -0
  419. libevtx_python-20260705/libfcache/libfcache_cache_value.c +502 -0
  420. libevtx_python-20260705/libfcache/libfcache_cache_value.h +132 -0
  421. libevtx_python-20260705/libfcache/libfcache_date_time.c +92 -0
  422. libevtx_python-20260705/libfcache/libfcache_date_time.h +45 -0
  423. libevtx_python-20260705/libfcache/libfcache_definitions.h +58 -0
  424. libevtx_python-20260705/libfcache/libfcache_error.c +111 -0
  425. libevtx_python-20260705/libfcache/libfcache_error.h +74 -0
  426. libevtx_python-20260705/libfcache/libfcache_extern.h +40 -0
  427. libevtx_python-20260705/libfcache/libfcache_libcdata.h +54 -0
  428. libevtx_python-20260705/libfcache/libfcache_libcerror.h +50 -0
  429. libevtx_python-20260705/libfcache/libfcache_support.c +41 -0
  430. libevtx_python-20260705/libfcache/libfcache_support.h +47 -0
  431. libevtx_python-20260705/libfcache/libfcache_types.h +49 -0
  432. libevtx_python-20260705/libfcache/libfcache_unused.h +44 -0
  433. libevtx_python-20260705/libfdata/Makefile.in +1000 -0
  434. libevtx_python-20260705/libfdata/libfdata_area.c +1482 -0
  435. libevtx_python-20260705/libfdata/libfdata_area.h +278 -0
  436. libevtx_python-20260705/libfdata/libfdata_cache.c +59 -0
  437. libevtx_python-20260705/libfdata/libfdata_cache.h +56 -0
  438. libevtx_python-20260705/libfdata/libfdata_definitions.h +249 -0
  439. libevtx_python-20260705/libfdata/libfdata_error.c +111 -0
  440. libevtx_python-20260705/libfdata/libfdata_error.h +74 -0
  441. libevtx_python-20260705/libfdata/libfdata_extern.h +40 -0
  442. libevtx_python-20260705/libfdata/libfdata_libcdata.h +54 -0
  443. libevtx_python-20260705/libfdata/libfdata_libcerror.h +50 -0
  444. libevtx_python-20260705/libfdata/libfdata_libcnotify.h +50 -0
  445. libevtx_python-20260705/libfdata/libfdata_libfcache.h +50 -0
  446. libevtx_python-20260705/libfdata/libfdata_list.c +4426 -0
  447. libevtx_python-20260705/libfdata/libfdata_list.h +452 -0
  448. libevtx_python-20260705/libfdata/libfdata_list_element.c +824 -0
  449. libevtx_python-20260705/libfdata/libfdata_list_element.h +159 -0
  450. libevtx_python-20260705/libfdata/libfdata_mapped_range.c +312 -0
  451. libevtx_python-20260705/libfdata/libfdata_mapped_range.h +77 -0
  452. libevtx_python-20260705/libfdata/libfdata_notify.c +120 -0
  453. libevtx_python-20260705/libfdata/libfdata_notify.h +63 -0
  454. libevtx_python-20260705/libfdata/libfdata_range.c +358 -0
  455. libevtx_python-20260705/libfdata/libfdata_range.h +94 -0
  456. libevtx_python-20260705/libfdata/libfdata_range_list.c +1196 -0
  457. libevtx_python-20260705/libfdata/libfdata_range_list.h +214 -0
  458. libevtx_python-20260705/libfdata/libfdata_segments_array.c +914 -0
  459. libevtx_python-20260705/libfdata/libfdata_segments_array.h +94 -0
  460. libevtx_python-20260705/libfdata/libfdata_stream.c +2582 -0
  461. libevtx_python-20260705/libfdata/libfdata_stream.h +363 -0
  462. libevtx_python-20260705/libfdata/libfdata_support.c +41 -0
  463. libevtx_python-20260705/libfdata/libfdata_support.h +47 -0
  464. libevtx_python-20260705/libfdata/libfdata_types.h +59 -0
  465. libevtx_python-20260705/libfdata/libfdata_unused.h +44 -0
  466. libevtx_python-20260705/libfdata/libfdata_vector.c +1932 -0
  467. libevtx_python-20260705/libfdata/libfdata_vector.h +295 -0
  468. libevtx_python-20260705/libfdatetime/Makefile.in +978 -0
  469. libevtx_python-20260705/libfdatetime/libfdatetime_date_time_values.c +1906 -0
  470. libevtx_python-20260705/libfdatetime/libfdatetime_date_time_values.h +121 -0
  471. libevtx_python-20260705/libfdatetime/libfdatetime_definitions.h +121 -0
  472. libevtx_python-20260705/libfdatetime/libfdatetime_error.c +111 -0
  473. libevtx_python-20260705/libfdatetime/libfdatetime_error.h +74 -0
  474. libevtx_python-20260705/libfdatetime/libfdatetime_extern.h +40 -0
  475. libevtx_python-20260705/libfdatetime/libfdatetime_fat_date_time.c +1258 -0
  476. libevtx_python-20260705/libfdatetime/libfdatetime_fat_date_time.h +172 -0
  477. libevtx_python-20260705/libfdatetime/libfdatetime_filetime.c +1465 -0
  478. libevtx_python-20260705/libfdatetime/libfdatetime_filetime.h +177 -0
  479. libevtx_python-20260705/libfdatetime/libfdatetime_floatingtime.c +1333 -0
  480. libevtx_python-20260705/libfdatetime/libfdatetime_floatingtime.h +168 -0
  481. libevtx_python-20260705/libfdatetime/libfdatetime_hfs_time.c +1329 -0
  482. libevtx_python-20260705/libfdatetime/libfdatetime_hfs_time.h +166 -0
  483. libevtx_python-20260705/libfdatetime/libfdatetime_libcerror.h +50 -0
  484. libevtx_python-20260705/libfdatetime/libfdatetime_nsf_timedate.c +1373 -0
  485. libevtx_python-20260705/libfdatetime/libfdatetime_nsf_timedate.h +177 -0
  486. libevtx_python-20260705/libfdatetime/libfdatetime_posix_time.c +1918 -0
  487. libevtx_python-20260705/libfdatetime/libfdatetime_posix_time.h +189 -0
  488. libevtx_python-20260705/libfdatetime/libfdatetime_support.c +41 -0
  489. libevtx_python-20260705/libfdatetime/libfdatetime_support.h +47 -0
  490. libevtx_python-20260705/libfdatetime/libfdatetime_systemtime.c +1779 -0
  491. libevtx_python-20260705/libfdatetime/libfdatetime_systemtime.h +180 -0
  492. libevtx_python-20260705/libfdatetime/libfdatetime_types.h +63 -0
  493. libevtx_python-20260705/libfdatetime/libfdatetime_unused.h +44 -0
  494. libevtx_python-20260705/libfguid/Makefile.in +928 -0
  495. libevtx_python-20260705/libfguid/libfguid_definitions.h +84 -0
  496. libevtx_python-20260705/libfguid/libfguid_error.c +111 -0
  497. libevtx_python-20260705/libfguid/libfguid_error.h +74 -0
  498. libevtx_python-20260705/libfguid/libfguid_extern.h +40 -0
  499. libevtx_python-20260705/libfguid/libfguid_identifier.c +2524 -0
  500. libevtx_python-20260705/libfguid/libfguid_identifier.h +204 -0
  501. libevtx_python-20260705/libfguid/libfguid_libcerror.h +50 -0
  502. libevtx_python-20260705/libfguid/libfguid_support.c +41 -0
  503. libevtx_python-20260705/libfguid/libfguid_support.h +47 -0
  504. libevtx_python-20260705/libfguid/libfguid_types.h +47 -0
  505. libevtx_python-20260705/libfguid/libfguid_unused.h +44 -0
  506. libevtx_python-20260705/libfvalue/Makefile.in +1037 -0
  507. libevtx_python-20260705/libfvalue/libfvalue_binary_data.c +1390 -0
  508. libevtx_python-20260705/libfvalue/libfvalue_binary_data.h +114 -0
  509. libevtx_python-20260705/libfvalue/libfvalue_codepage.h +103 -0
  510. libevtx_python-20260705/libfvalue/libfvalue_data_handle.c +1661 -0
  511. libevtx_python-20260705/libfvalue/libfvalue_data_handle.h +195 -0
  512. libevtx_python-20260705/libfvalue/libfvalue_definitions.h +350 -0
  513. libevtx_python-20260705/libfvalue/libfvalue_error.c +111 -0
  514. libevtx_python-20260705/libfvalue/libfvalue_error.h +74 -0
  515. libevtx_python-20260705/libfvalue/libfvalue_extern.h +40 -0
  516. libevtx_python-20260705/libfvalue/libfvalue_filetime.c +113 -0
  517. libevtx_python-20260705/libfvalue/libfvalue_filetime.h +56 -0
  518. libevtx_python-20260705/libfvalue/libfvalue_floating_point.c +3472 -0
  519. libevtx_python-20260705/libfvalue/libfvalue_floating_point.h +246 -0
  520. libevtx_python-20260705/libfvalue/libfvalue_integer.c +2908 -0
  521. libevtx_python-20260705/libfvalue/libfvalue_integer.h +261 -0
  522. libevtx_python-20260705/libfvalue/libfvalue_libcdata.h +54 -0
  523. libevtx_python-20260705/libfvalue/libfvalue_libcerror.h +50 -0
  524. libevtx_python-20260705/libfvalue/libfvalue_libcnotify.h +50 -0
  525. libevtx_python-20260705/libfvalue/libfvalue_libfdatetime.h +58 -0
  526. libevtx_python-20260705/libfvalue/libfvalue_libfguid.h +51 -0
  527. libevtx_python-20260705/libfvalue/libfvalue_libfwnt.h +57 -0
  528. libevtx_python-20260705/libfvalue/libfvalue_libuna.h +60 -0
  529. libevtx_python-20260705/libfvalue/libfvalue_split_utf16_string.c +546 -0
  530. libevtx_python-20260705/libfvalue/libfvalue_split_utf16_string.h +114 -0
  531. libevtx_python-20260705/libfvalue/libfvalue_split_utf8_string.c +535 -0
  532. libevtx_python-20260705/libfvalue/libfvalue_split_utf8_string.h +114 -0
  533. libevtx_python-20260705/libfvalue/libfvalue_string.c +3070 -0
  534. libevtx_python-20260705/libfvalue/libfvalue_string.h +165 -0
  535. libevtx_python-20260705/libfvalue/libfvalue_support.c +41 -0
  536. libevtx_python-20260705/libfvalue/libfvalue_support.h +47 -0
  537. libevtx_python-20260705/libfvalue/libfvalue_table.c +1357 -0
  538. libevtx_python-20260705/libfvalue/libfvalue_table.h +136 -0
  539. libevtx_python-20260705/libfvalue/libfvalue_types.h +55 -0
  540. libevtx_python-20260705/libfvalue/libfvalue_unused.h +44 -0
  541. libevtx_python-20260705/libfvalue/libfvalue_utf16_string.c +300 -0
  542. libevtx_python-20260705/libfvalue/libfvalue_utf16_string.h +50 -0
  543. libevtx_python-20260705/libfvalue/libfvalue_utf8_string.c +300 -0
  544. libevtx_python-20260705/libfvalue/libfvalue_utf8_string.h +50 -0
  545. libevtx_python-20260705/libfvalue/libfvalue_value.c +5244 -0
  546. libevtx_python-20260705/libfvalue/libfvalue_value.h +753 -0
  547. libevtx_python-20260705/libfvalue/libfvalue_value_entry.c +210 -0
  548. libevtx_python-20260705/libfvalue/libfvalue_value_entry.h +65 -0
  549. libevtx_python-20260705/libfvalue/libfvalue_value_type.c +1183 -0
  550. libevtx_python-20260705/libfvalue/libfvalue_value_type.h +100 -0
  551. libevtx_python-20260705/libfwevt/Makefile.in +1089 -0
  552. libevtx_python-20260705/libfwevt/fwevt_template.h +557 -0
  553. libevtx_python-20260705/libfwevt/libfwevt_channel.c +698 -0
  554. libevtx_python-20260705/libfwevt/libfwevt_channel.h +110 -0
  555. libevtx_python-20260705/libfwevt/libfwevt_data_segment.c +274 -0
  556. libevtx_python-20260705/libfwevt/libfwevt_data_segment.h +94 -0
  557. libevtx_python-20260705/libfwevt/libfwevt_date_time.c +468 -0
  558. libevtx_python-20260705/libfwevt/libfwevt_date_time.h +45 -0
  559. libevtx_python-20260705/libfwevt/libfwevt_debug.c +689 -0
  560. libevtx_python-20260705/libfwevt/libfwevt_debug.h +70 -0
  561. libevtx_python-20260705/libfwevt/libfwevt_definitions.h +168 -0
  562. libevtx_python-20260705/libfwevt/libfwevt_error.c +111 -0
  563. libevtx_python-20260705/libfwevt/libfwevt_error.h +74 -0
  564. libevtx_python-20260705/libfwevt/libfwevt_event.c +545 -0
  565. libevtx_python-20260705/libfwevt/libfwevt_event.h +122 -0
  566. libevtx_python-20260705/libfwevt/libfwevt_extern.h +53 -0
  567. libevtx_python-20260705/libfwevt/libfwevt_floating_point.c +1296 -0
  568. libevtx_python-20260705/libfwevt/libfwevt_floating_point.h +77 -0
  569. libevtx_python-20260705/libfwevt/libfwevt_integer.c +866 -0
  570. libevtx_python-20260705/libfwevt/libfwevt_integer.h +102 -0
  571. libevtx_python-20260705/libfwevt/libfwevt_keyword.c +374 -0
  572. libevtx_python-20260705/libfwevt/libfwevt_keyword.h +70 -0
  573. libevtx_python-20260705/libfwevt/libfwevt_level.c +373 -0
  574. libevtx_python-20260705/libfwevt/libfwevt_level.h +70 -0
  575. libevtx_python-20260705/libfwevt/libfwevt_libcdata.h +54 -0
  576. libevtx_python-20260705/libfwevt/libfwevt_libcerror.h +50 -0
  577. libevtx_python-20260705/libfwevt/libfwevt_libcnotify.h +50 -0
  578. libevtx_python-20260705/libfwevt/libfwevt_libfdatetime.h +56 -0
  579. libevtx_python-20260705/libfwevt/libfwevt_libfguid.h +49 -0
  580. libevtx_python-20260705/libfwevt/libfwevt_libfwnt.h +58 -0
  581. libevtx_python-20260705/libfwevt/libfwevt_libuna.h +60 -0
  582. libevtx_python-20260705/libfwevt/libfwevt_manifest.c +839 -0
  583. libevtx_python-20260705/libfwevt/libfwevt_manifest.h +97 -0
  584. libevtx_python-20260705/libfwevt/libfwevt_map.c +278 -0
  585. libevtx_python-20260705/libfwevt/libfwevt_map.h +70 -0
  586. libevtx_python-20260705/libfwevt/libfwevt_notify.c +120 -0
  587. libevtx_python-20260705/libfwevt/libfwevt_notify.h +63 -0
  588. libevtx_python-20260705/libfwevt/libfwevt_opcode.c +373 -0
  589. libevtx_python-20260705/libfwevt/libfwevt_opcode.h +70 -0
  590. libevtx_python-20260705/libfwevt/libfwevt_provider.c +4270 -0
  591. libevtx_python-20260705/libfwevt/libfwevt_provider.h +325 -0
  592. libevtx_python-20260705/libfwevt/libfwevt_support.c +41 -0
  593. libevtx_python-20260705/libfwevt/libfwevt_support.h +47 -0
  594. libevtx_python-20260705/libfwevt/libfwevt_task.c +397 -0
  595. libevtx_python-20260705/libfwevt/libfwevt_task.h +70 -0
  596. libevtx_python-20260705/libfwevt/libfwevt_template.c +1616 -0
  597. libevtx_python-20260705/libfwevt/libfwevt_template.h +194 -0
  598. libevtx_python-20260705/libfwevt/libfwevt_template_item.c +869 -0
  599. libevtx_python-20260705/libfwevt/libfwevt_template_item.h +145 -0
  600. libevtx_python-20260705/libfwevt/libfwevt_types.h +75 -0
  601. libevtx_python-20260705/libfwevt/libfwevt_unused.h +44 -0
  602. libevtx_python-20260705/libfwevt/libfwevt_xml_document.c +6788 -0
  603. libevtx_python-20260705/libfwevt/libfwevt_xml_document.h +317 -0
  604. libevtx_python-20260705/libfwevt/libfwevt_xml_string.c +984 -0
  605. libevtx_python-20260705/libfwevt/libfwevt_xml_string.h +72 -0
  606. libevtx_python-20260705/libfwevt/libfwevt_xml_tag.c +4692 -0
  607. libevtx_python-20260705/libfwevt/libfwevt_xml_tag.h +311 -0
  608. libevtx_python-20260705/libfwevt/libfwevt_xml_template_value.c +412 -0
  609. libevtx_python-20260705/libfwevt/libfwevt_xml_template_value.h +109 -0
  610. libevtx_python-20260705/libfwevt/libfwevt_xml_token.c +236 -0
  611. libevtx_python-20260705/libfwevt/libfwevt_xml_token.h +67 -0
  612. libevtx_python-20260705/libfwevt/libfwevt_xml_value.c +3691 -0
  613. libevtx_python-20260705/libfwevt/libfwevt_xml_value.h +276 -0
  614. libevtx_python-20260705/libfwnt/Makefile.in +1005 -0
  615. libevtx_python-20260705/libfwnt/libfwnt_access_control_entry.c +764 -0
  616. libevtx_python-20260705/libfwnt/libfwnt_access_control_entry.h +116 -0
  617. libevtx_python-20260705/libfwnt/libfwnt_access_control_list.c +516 -0
  618. libevtx_python-20260705/libfwnt/libfwnt_access_control_list.h +93 -0
  619. libevtx_python-20260705/libfwnt/libfwnt_bit_stream.c +308 -0
  620. libevtx_python-20260705/libfwnt/libfwnt_bit_stream.h +85 -0
  621. libevtx_python-20260705/libfwnt/libfwnt_debug.c +355 -0
  622. libevtx_python-20260705/libfwnt/libfwnt_debug.h +53 -0
  623. libevtx_python-20260705/libfwnt/libfwnt_definitions.h +112 -0
  624. libevtx_python-20260705/libfwnt/libfwnt_error.c +111 -0
  625. libevtx_python-20260705/libfwnt/libfwnt_error.h +74 -0
  626. libevtx_python-20260705/libfwnt/libfwnt_extern.h +40 -0
  627. libevtx_python-20260705/libfwnt/libfwnt_huffman_tree.c +600 -0
  628. libevtx_python-20260705/libfwnt/libfwnt_huffman_tree.h +79 -0
  629. libevtx_python-20260705/libfwnt/libfwnt_libcdata.h +54 -0
  630. libevtx_python-20260705/libfwnt/libfwnt_libcerror.h +50 -0
  631. libevtx_python-20260705/libfwnt/libfwnt_libcnotify.h +50 -0
  632. libevtx_python-20260705/libfwnt/libfwnt_locale_identifier.c +470 -0
  633. libevtx_python-20260705/libfwnt/libfwnt_locale_identifier.h +63 -0
  634. libevtx_python-20260705/libfwnt/libfwnt_lznt1.c +560 -0
  635. libevtx_python-20260705/libfwnt/libfwnt_lznt1.h +57 -0
  636. libevtx_python-20260705/libfwnt/libfwnt_lzx.c +1465 -0
  637. libevtx_python-20260705/libfwnt/libfwnt_lzx.h +95 -0
  638. libevtx_python-20260705/libfwnt/libfwnt_lzxpress.c +1041 -0
  639. libevtx_python-20260705/libfwnt/libfwnt_lzxpress.h +86 -0
  640. libevtx_python-20260705/libfwnt/libfwnt_notify.c +120 -0
  641. libevtx_python-20260705/libfwnt/libfwnt_notify.h +63 -0
  642. libevtx_python-20260705/libfwnt/libfwnt_security_descriptor.c +1027 -0
  643. libevtx_python-20260705/libfwnt/libfwnt_security_descriptor.h +116 -0
  644. libevtx_python-20260705/libfwnt/libfwnt_security_identifier.c +1176 -0
  645. libevtx_python-20260705/libfwnt/libfwnt_security_identifier.h +166 -0
  646. libevtx_python-20260705/libfwnt/libfwnt_support.c +41 -0
  647. libevtx_python-20260705/libfwnt/libfwnt_support.h +47 -0
  648. libevtx_python-20260705/libfwnt/libfwnt_types.h +53 -0
  649. libevtx_python-20260705/libfwnt/libfwnt_unused.h +44 -0
  650. libevtx_python-20260705/libregf/Makefile.in +1117 -0
  651. libevtx_python-20260705/libregf/libregf_checksum.c +295 -0
  652. libevtx_python-20260705/libregf/libregf_checksum.h +46 -0
  653. libevtx_python-20260705/libregf/libregf_codepage.h +90 -0
  654. libevtx_python-20260705/libregf/libregf_data_block_key.c +251 -0
  655. libevtx_python-20260705/libregf/libregf_data_block_key.h +66 -0
  656. libevtx_python-20260705/libregf/libregf_data_block_stream.c +110 -0
  657. libevtx_python-20260705/libregf/libregf_data_block_stream.h +59 -0
  658. libevtx_python-20260705/libregf/libregf_data_type.c +85 -0
  659. libevtx_python-20260705/libregf/libregf_data_type.h +64 -0
  660. libevtx_python-20260705/libregf/libregf_debug.c +596 -0
  661. libevtx_python-20260705/libregf/libregf_debug.h +85 -0
  662. libevtx_python-20260705/libregf/libregf_definitions.h +163 -0
  663. libevtx_python-20260705/libregf/libregf_dirty_vector.c +385 -0
  664. libevtx_python-20260705/libregf/libregf_dirty_vector.h +71 -0
  665. libevtx_python-20260705/libregf/libregf_error.c +111 -0
  666. libevtx_python-20260705/libregf/libregf_error.h +74 -0
  667. libevtx_python-20260705/libregf/libregf_extern.h +40 -0
  668. libevtx_python-20260705/libregf/libregf_file.c +2122 -0
  669. libevtx_python-20260705/libregf/libregf_file.h +204 -0
  670. libevtx_python-20260705/libregf/libregf_file_header.c +453 -0
  671. libevtx_python-20260705/libregf/libregf_file_header.h +84 -0
  672. libevtx_python-20260705/libregf/libregf_hive_bin.c +733 -0
  673. libevtx_python-20260705/libregf/libregf_hive_bin.h +105 -0
  674. libevtx_python-20260705/libregf/libregf_hive_bin_cell.c +135 -0
  675. libevtx_python-20260705/libregf/libregf_hive_bin_cell.h +68 -0
  676. libevtx_python-20260705/libregf/libregf_hive_bin_header.c +377 -0
  677. libevtx_python-20260705/libregf/libregf_hive_bin_header.h +73 -0
  678. libevtx_python-20260705/libregf/libregf_hive_bins_list.c +766 -0
  679. libevtx_python-20260705/libregf/libregf_hive_bins_list.h +116 -0
  680. libevtx_python-20260705/libregf/libregf_io_handle.c +178 -0
  681. libevtx_python-20260705/libregf/libregf_io_handle.h +82 -0
  682. libevtx_python-20260705/libregf/libregf_key.c +3668 -0
  683. libevtx_python-20260705/libregf/libregf_key.h +320 -0
  684. libevtx_python-20260705/libregf/libregf_key_descriptor.c +131 -0
  685. libevtx_python-20260705/libregf/libregf_key_descriptor.h +60 -0
  686. libevtx_python-20260705/libregf/libregf_key_item.c +2742 -0
  687. libevtx_python-20260705/libregf/libregf_key_item.h +279 -0
  688. libevtx_python-20260705/libregf/libregf_key_tree.c +515 -0
  689. libevtx_python-20260705/libregf/libregf_key_tree.h +63 -0
  690. libevtx_python-20260705/libregf/libregf_libbfio.h +58 -0
  691. libevtx_python-20260705/libregf/libregf_libcdata.h +54 -0
  692. libevtx_python-20260705/libregf/libregf_libcerror.h +50 -0
  693. libevtx_python-20260705/libregf/libregf_libclocale.h +50 -0
  694. libevtx_python-20260705/libregf/libregf_libcnotify.h +50 -0
  695. libevtx_python-20260705/libregf/libregf_libcthreads.h +64 -0
  696. libevtx_python-20260705/libregf/libregf_libfcache.h +50 -0
  697. libevtx_python-20260705/libregf/libregf_libfdata.h +54 -0
  698. libevtx_python-20260705/libregf/libregf_libfdatetime.h +56 -0
  699. libevtx_python-20260705/libregf/libregf_libfwnt.h +58 -0
  700. libevtx_python-20260705/libregf/libregf_libuna.h +60 -0
  701. libevtx_python-20260705/libregf/libregf_multi_string.c +901 -0
  702. libevtx_python-20260705/libregf/libregf_multi_string.h +128 -0
  703. libevtx_python-20260705/libregf/libregf_named_key.c +1359 -0
  704. libevtx_python-20260705/libregf/libregf_named_key.h +172 -0
  705. libevtx_python-20260705/libregf/libregf_notify.c +120 -0
  706. libevtx_python-20260705/libregf/libregf_notify.h +63 -0
  707. libevtx_python-20260705/libregf/libregf_security_key.c +447 -0
  708. libevtx_python-20260705/libregf/libregf_security_key.h +68 -0
  709. libevtx_python-20260705/libregf/libregf_sub_key_list.c +441 -0
  710. libevtx_python-20260705/libregf/libregf_sub_key_list.h +69 -0
  711. libevtx_python-20260705/libregf/libregf_support.c +429 -0
  712. libevtx_python-20260705/libregf/libregf_support.h +82 -0
  713. libevtx_python-20260705/libregf/libregf_types.h +53 -0
  714. libevtx_python-20260705/libregf/libregf_unused.h +44 -0
  715. libevtx_python-20260705/libregf/libregf_value.c +1844 -0
  716. libevtx_python-20260705/libregf/libregf_value.h +211 -0
  717. libevtx_python-20260705/libregf/libregf_value_item.c +3011 -0
  718. libevtx_python-20260705/libregf/libregf_value_item.h +254 -0
  719. libevtx_python-20260705/libregf/libregf_value_key.c +1516 -0
  720. libevtx_python-20260705/libregf/libregf_value_key.h +160 -0
  721. libevtx_python-20260705/libregf/regf_cell_values.h +263 -0
  722. libevtx_python-20260705/libregf/regf_file_header.h +114 -0
  723. libevtx_python-20260705/libregf/regf_hive_bin.h +81 -0
  724. libevtx_python-20260705/libuna/Makefile.in +1347 -0
  725. libevtx_python-20260705/libuna/libuna_base16_stream.c +1511 -0
  726. libevtx_python-20260705/libuna/libuna_base16_stream.h +93 -0
  727. libevtx_python-20260705/libuna/libuna_base32_stream.c +3035 -0
  728. libevtx_python-20260705/libuna/libuna_base32_stream.h +131 -0
  729. libevtx_python-20260705/libuna/libuna_base64_stream.c +2832 -0
  730. libevtx_python-20260705/libuna/libuna_base64_stream.h +131 -0
  731. libevtx_python-20260705/libuna/libuna_byte_stream.c +633 -0
  732. libevtx_python-20260705/libuna/libuna_byte_stream.h +104 -0
  733. libevtx_python-20260705/libuna/libuna_codepage_iso_8859_10.c +73 -0
  734. libevtx_python-20260705/libuna/libuna_codepage_iso_8859_10.h +48 -0
  735. libevtx_python-20260705/libuna/libuna_codepage_iso_8859_13.c +82 -0
  736. libevtx_python-20260705/libuna/libuna_codepage_iso_8859_13.h +48 -0
  737. libevtx_python-20260705/libuna/libuna_codepage_iso_8859_14.c +66 -0
  738. libevtx_python-20260705/libuna/libuna_codepage_iso_8859_14.h +51 -0
  739. libevtx_python-20260705/libuna/libuna_codepage_iso_8859_15.c +46 -0
  740. libevtx_python-20260705/libuna/libuna_codepage_iso_8859_15.h +45 -0
  741. libevtx_python-20260705/libuna/libuna_codepage_iso_8859_16.c +78 -0
  742. libevtx_python-20260705/libuna/libuna_codepage_iso_8859_16.h +57 -0
  743. libevtx_python-20260705/libuna/libuna_codepage_iso_8859_2.c +82 -0
  744. libevtx_python-20260705/libuna/libuna_codepage_iso_8859_2.h +51 -0
  745. libevtx_python-20260705/libuna/libuna_codepage_iso_8859_3.c +79 -0
  746. libevtx_python-20260705/libuna/libuna_codepage_iso_8859_3.h +57 -0
  747. libevtx_python-20260705/libuna/libuna_codepage_iso_8859_4.c +80 -0
  748. libevtx_python-20260705/libuna/libuna_codepage_iso_8859_4.h +48 -0
  749. libevtx_python-20260705/libuna/libuna_codepage_iso_8859_5.c +62 -0
  750. libevtx_python-20260705/libuna/libuna_codepage_iso_8859_5.h +45 -0
  751. libevtx_python-20260705/libuna/libuna_codepage_iso_8859_6.c +58 -0
  752. libevtx_python-20260705/libuna/libuna_codepage_iso_8859_6.h +45 -0
  753. libevtx_python-20260705/libuna/libuna_codepage_iso_8859_7.c +66 -0
  754. libevtx_python-20260705/libuna/libuna_codepage_iso_8859_7.h +48 -0
  755. libevtx_python-20260705/libuna/libuna_codepage_iso_8859_8.c +61 -0
  756. libevtx_python-20260705/libuna/libuna_codepage_iso_8859_8.h +48 -0
  757. libevtx_python-20260705/libuna/libuna_codepage_iso_8859_9.c +50 -0
  758. libevtx_python-20260705/libuna/libuna_codepage_iso_8859_9.h +45 -0
  759. libevtx_python-20260705/libuna/libuna_codepage_koi8_r.c +392 -0
  760. libevtx_python-20260705/libuna/libuna_codepage_koi8_r.h +54 -0
  761. libevtx_python-20260705/libuna/libuna_codepage_koi8_u.c +424 -0
  762. libevtx_python-20260705/libuna/libuna_codepage_koi8_u.h +54 -0
  763. libevtx_python-20260705/libuna/libuna_codepage_mac_arabic.c +352 -0
  764. libevtx_python-20260705/libuna/libuna_codepage_mac_arabic.h +54 -0
  765. libevtx_python-20260705/libuna/libuna_codepage_mac_celtic.c +395 -0
  766. libevtx_python-20260705/libuna/libuna_codepage_mac_celtic.h +54 -0
  767. libevtx_python-20260705/libuna/libuna_codepage_mac_centraleurroman.c +319 -0
  768. libevtx_python-20260705/libuna/libuna_codepage_mac_centraleurroman.h +54 -0
  769. libevtx_python-20260705/libuna/libuna_codepage_mac_croatian.c +378 -0
  770. libevtx_python-20260705/libuna/libuna_codepage_mac_croatian.h +54 -0
  771. libevtx_python-20260705/libuna/libuna_codepage_mac_cyrillic.c +325 -0
  772. libevtx_python-20260705/libuna/libuna_codepage_mac_cyrillic.h +54 -0
  773. libevtx_python-20260705/libuna/libuna_codepage_mac_dingbats.c +347 -0
  774. libevtx_python-20260705/libuna/libuna_codepage_mac_dingbats.h +54 -0
  775. libevtx_python-20260705/libuna/libuna_codepage_mac_farsi.c +372 -0
  776. libevtx_python-20260705/libuna/libuna_codepage_mac_farsi.h +54 -0
  777. libevtx_python-20260705/libuna/libuna_codepage_mac_gaelic.c +437 -0
  778. libevtx_python-20260705/libuna/libuna_codepage_mac_gaelic.h +54 -0
  779. libevtx_python-20260705/libuna/libuna_codepage_mac_greek.c +305 -0
  780. libevtx_python-20260705/libuna/libuna_codepage_mac_greek.h +54 -0
  781. libevtx_python-20260705/libuna/libuna_codepage_mac_icelandic.c +381 -0
  782. libevtx_python-20260705/libuna/libuna_codepage_mac_icelandic.h +54 -0
  783. libevtx_python-20260705/libuna/libuna_codepage_mac_inuit.c +380 -0
  784. libevtx_python-20260705/libuna/libuna_codepage_mac_inuit.h +54 -0
  785. libevtx_python-20260705/libuna/libuna_codepage_mac_roman.c +387 -0
  786. libevtx_python-20260705/libuna/libuna_codepage_mac_roman.h +54 -0
  787. libevtx_python-20260705/libuna/libuna_codepage_mac_romanian.c +396 -0
  788. libevtx_python-20260705/libuna/libuna_codepage_mac_romanian.h +54 -0
  789. libevtx_python-20260705/libuna/libuna_codepage_mac_russian.c +317 -0
  790. libevtx_python-20260705/libuna/libuna_codepage_mac_russian.h +54 -0
  791. libevtx_python-20260705/libuna/libuna_codepage_mac_symbol.c +537 -0
  792. libevtx_python-20260705/libuna/libuna_codepage_mac_symbol.h +59 -0
  793. libevtx_python-20260705/libuna/libuna_codepage_mac_thai.c +330 -0
  794. libevtx_python-20260705/libuna/libuna_codepage_mac_thai.h +59 -0
  795. libevtx_python-20260705/libuna/libuna_codepage_mac_turkish.c +397 -0
  796. libevtx_python-20260705/libuna/libuna_codepage_mac_turkish.h +54 -0
  797. libevtx_python-20260705/libuna/libuna_codepage_mac_ukrainian.c +321 -0
  798. libevtx_python-20260705/libuna/libuna_codepage_mac_ukrainian.h +54 -0
  799. libevtx_python-20260705/libuna/libuna_codepage_windows_1250.c +313 -0
  800. libevtx_python-20260705/libuna/libuna_codepage_windows_1250.h +54 -0
  801. libevtx_python-20260705/libuna/libuna_codepage_windows_1251.c +301 -0
  802. libevtx_python-20260705/libuna/libuna_codepage_windows_1251.h +54 -0
  803. libevtx_python-20260705/libuna/libuna_codepage_windows_1252.c +287 -0
  804. libevtx_python-20260705/libuna/libuna_codepage_windows_1252.h +54 -0
  805. libevtx_python-20260705/libuna/libuna_codepage_windows_1253.c +291 -0
  806. libevtx_python-20260705/libuna/libuna_codepage_windows_1253.h +54 -0
  807. libevtx_python-20260705/libuna/libuna_codepage_windows_1254.c +348 -0
  808. libevtx_python-20260705/libuna/libuna_codepage_windows_1254.h +54 -0
  809. libevtx_python-20260705/libuna/libuna_codepage_windows_1255.c +328 -0
  810. libevtx_python-20260705/libuna/libuna_codepage_windows_1255.h +54 -0
  811. libevtx_python-20260705/libuna/libuna_codepage_windows_1256.c +372 -0
  812. libevtx_python-20260705/libuna/libuna_codepage_windows_1256.h +54 -0
  813. libevtx_python-20260705/libuna/libuna_codepage_windows_1257.c +303 -0
  814. libevtx_python-20260705/libuna/libuna_codepage_windows_1257.h +54 -0
  815. libevtx_python-20260705/libuna/libuna_codepage_windows_1258.c +349 -0
  816. libevtx_python-20260705/libuna/libuna_codepage_windows_1258.h +54 -0
  817. libevtx_python-20260705/libuna/libuna_codepage_windows_874.c +274 -0
  818. libevtx_python-20260705/libuna/libuna_codepage_windows_874.h +54 -0
  819. libevtx_python-20260705/libuna/libuna_codepage_windows_932.c +4913 -0
  820. libevtx_python-20260705/libuna/libuna_codepage_windows_932.h +59 -0
  821. libevtx_python-20260705/libuna/libuna_codepage_windows_936.c +7371 -0
  822. libevtx_python-20260705/libuna/libuna_codepage_windows_936.h +59 -0
  823. libevtx_python-20260705/libuna/libuna_codepage_windows_949.c +8163 -0
  824. libevtx_python-20260705/libuna/libuna_codepage_windows_949.h +59 -0
  825. libevtx_python-20260705/libuna/libuna_codepage_windows_950.c +6390 -0
  826. libevtx_python-20260705/libuna/libuna_codepage_windows_950.h +59 -0
  827. libevtx_python-20260705/libuna/libuna_definitions.h +436 -0
  828. libevtx_python-20260705/libuna/libuna_error.c +111 -0
  829. libevtx_python-20260705/libuna/libuna_error.h +74 -0
  830. libevtx_python-20260705/libuna/libuna_extern.h +53 -0
  831. libevtx_python-20260705/libuna/libuna_libcerror.h +50 -0
  832. libevtx_python-20260705/libuna/libuna_scsu.c +64 -0
  833. libevtx_python-20260705/libuna/libuna_scsu.h +45 -0
  834. libevtx_python-20260705/libuna/libuna_support.c +39 -0
  835. libevtx_python-20260705/libuna/libuna_support.h +49 -0
  836. libevtx_python-20260705/libuna/libuna_types.h +53 -0
  837. libevtx_python-20260705/libuna/libuna_unicode_character.c +5828 -0
  838. libevtx_python-20260705/libuna/libuna_unicode_character.h +260 -0
  839. libevtx_python-20260705/libuna/libuna_unused.h +44 -0
  840. libevtx_python-20260705/libuna/libuna_url_stream.c +584 -0
  841. libevtx_python-20260705/libuna/libuna_url_stream.h +71 -0
  842. libevtx_python-20260705/libuna/libuna_utf16_stream.c +815 -0
  843. libevtx_python-20260705/libuna/libuna_utf16_stream.h +109 -0
  844. libevtx_python-20260705/libuna/libuna_utf16_string.c +3950 -0
  845. libevtx_python-20260705/libuna/libuna_utf16_string.h +325 -0
  846. libevtx_python-20260705/libuna/libuna_utf32_stream.c +819 -0
  847. libevtx_python-20260705/libuna/libuna_utf32_stream.h +109 -0
  848. libevtx_python-20260705/libuna/libuna_utf32_string.c +3808 -0
  849. libevtx_python-20260705/libuna/libuna_utf32_string.h +321 -0
  850. libevtx_python-20260705/libuna/libuna_utf7_stream.c +628 -0
  851. libevtx_python-20260705/libuna/libuna_utf7_stream.h +98 -0
  852. libevtx_python-20260705/libuna/libuna_utf8_stream.c +748 -0
  853. libevtx_python-20260705/libuna/libuna_utf8_stream.h +105 -0
  854. libevtx_python-20260705/libuna/libuna_utf8_string.c +4092 -0
  855. libevtx_python-20260705/libuna/libuna_utf8_string.h +329 -0
  856. libevtx_python-20260705/libwrc/Makefile.in +1114 -0
  857. libevtx_python-20260705/libwrc/libwrc_codepage.h +90 -0
  858. libevtx_python-20260705/libwrc/libwrc_data_descriptor.c +295 -0
  859. libevtx_python-20260705/libwrc/libwrc_data_descriptor.h +73 -0
  860. libevtx_python-20260705/libwrc/libwrc_debug.c +324 -0
  861. libevtx_python-20260705/libwrc/libwrc_debug.h +59 -0
  862. libevtx_python-20260705/libwrc/libwrc_definitions.h +144 -0
  863. libevtx_python-20260705/libwrc/libwrc_error.c +111 -0
  864. libevtx_python-20260705/libwrc/libwrc_error.h +74 -0
  865. libevtx_python-20260705/libwrc/libwrc_extern.h +53 -0
  866. libevtx_python-20260705/libwrc/libwrc_io_handle.c +173 -0
  867. libevtx_python-20260705/libwrc/libwrc_io_handle.h +74 -0
  868. libevtx_python-20260705/libwrc/libwrc_language_entry.c +307 -0
  869. libevtx_python-20260705/libwrc/libwrc_language_entry.h +88 -0
  870. libevtx_python-20260705/libwrc/libwrc_language_table.c +459 -0
  871. libevtx_python-20260705/libwrc/libwrc_language_table.h +87 -0
  872. libevtx_python-20260705/libwrc/libwrc_libbfio.h +58 -0
  873. libevtx_python-20260705/libwrc/libwrc_libcdata.h +54 -0
  874. libevtx_python-20260705/libwrc/libwrc_libcerror.h +50 -0
  875. libevtx_python-20260705/libwrc/libwrc_libclocale.h +50 -0
  876. libevtx_python-20260705/libwrc/libwrc_libcnotify.h +50 -0
  877. libevtx_python-20260705/libwrc/libwrc_libfcache.h +50 -0
  878. libevtx_python-20260705/libwrc/libwrc_libfdata.h +54 -0
  879. libevtx_python-20260705/libwrc/libwrc_libfguid.h +49 -0
  880. libevtx_python-20260705/libwrc/libwrc_libfvalue.h +60 -0
  881. libevtx_python-20260705/libwrc/libwrc_libfwnt.h +58 -0
  882. libevtx_python-20260705/libwrc/libwrc_libuna.h +60 -0
  883. libevtx_python-20260705/libwrc/libwrc_manifest_resource.c +430 -0
  884. libevtx_python-20260705/libwrc/libwrc_manifest_resource.h +97 -0
  885. libevtx_python-20260705/libwrc/libwrc_manifest_values.c +242 -0
  886. libevtx_python-20260705/libwrc/libwrc_manifest_values.h +50 -0
  887. libevtx_python-20260705/libwrc/libwrc_message_table_resource.c +995 -0
  888. libevtx_python-20260705/libwrc/libwrc_message_table_resource.h +119 -0
  889. libevtx_python-20260705/libwrc/libwrc_message_table_values.c +509 -0
  890. libevtx_python-20260705/libwrc/libwrc_message_table_values.h +51 -0
  891. libevtx_python-20260705/libwrc/libwrc_mui_resource.c +2478 -0
  892. libevtx_python-20260705/libwrc/libwrc_mui_resource.h +209 -0
  893. libevtx_python-20260705/libwrc/libwrc_mui_values.c +1384 -0
  894. libevtx_python-20260705/libwrc/libwrc_mui_values.h +106 -0
  895. libevtx_python-20260705/libwrc/libwrc_notify.c +120 -0
  896. libevtx_python-20260705/libwrc/libwrc_notify.h +63 -0
  897. libevtx_python-20260705/libwrc/libwrc_resource.c +1407 -0
  898. libevtx_python-20260705/libwrc/libwrc_resource.h +158 -0
  899. libevtx_python-20260705/libwrc/libwrc_resource_item.c +892 -0
  900. libevtx_python-20260705/libwrc/libwrc_resource_item.h +161 -0
  901. libevtx_python-20260705/libwrc/libwrc_resource_node_entry.c +962 -0
  902. libevtx_python-20260705/libwrc/libwrc_resource_node_entry.h +140 -0
  903. libevtx_python-20260705/libwrc/libwrc_resource_node_header.c +347 -0
  904. libevtx_python-20260705/libwrc/libwrc_resource_node_header.h +77 -0
  905. libevtx_python-20260705/libwrc/libwrc_resource_node_tree.c +559 -0
  906. libevtx_python-20260705/libwrc/libwrc_resource_node_tree.h +50 -0
  907. libevtx_python-20260705/libwrc/libwrc_stream.c +1841 -0
  908. libevtx_python-20260705/libwrc/libwrc_stream.h +190 -0
  909. libevtx_python-20260705/libwrc/libwrc_string_table_resource.c +809 -0
  910. libevtx_python-20260705/libwrc/libwrc_string_table_resource.h +119 -0
  911. libevtx_python-20260705/libwrc/libwrc_string_values.c +329 -0
  912. libevtx_python-20260705/libwrc/libwrc_string_values.h +51 -0
  913. libevtx_python-20260705/libwrc/libwrc_support.c +102 -0
  914. libevtx_python-20260705/libwrc/libwrc_support.h +62 -0
  915. libevtx_python-20260705/libwrc/libwrc_table_entry.c +463 -0
  916. libevtx_python-20260705/libwrc/libwrc_table_entry.h +97 -0
  917. libevtx_python-20260705/libwrc/libwrc_types.h +61 -0
  918. libevtx_python-20260705/libwrc/libwrc_unused.h +44 -0
  919. libevtx_python-20260705/libwrc/libwrc_version_information_resource.c +1938 -0
  920. libevtx_python-20260705/libwrc/libwrc_version_information_resource.h +118 -0
  921. libevtx_python-20260705/libwrc/libwrc_version_values.c +1978 -0
  922. libevtx_python-20260705/libwrc/libwrc_version_values.h +116 -0
  923. libevtx_python-20260705/libwrc/wrc_data_descriptor.h +52 -0
  924. libevtx_python-20260705/libwrc/wrc_message_table_resource.h +72 -0
  925. libevtx_python-20260705/libwrc/wrc_mui_resource.h +93 -0
  926. libevtx_python-20260705/libwrc/wrc_resource_node.h +88 -0
  927. libevtx_python-20260705/libwrc/wrc_version_information_resource.h +57 -0
  928. libevtx_python-20260705/ltmain.sh +11436 -0
  929. libevtx_python-20260705/m4/common.m4 +656 -0
  930. libevtx_python-20260705/m4/libcdirectory.m4 +252 -0
  931. libevtx_python-20260705/m4/libcfile.m4 +307 -0
  932. libevtx_python-20260705/m4/libclocale.m4 +242 -0
  933. libevtx_python-20260705/m4/libcpath.m4 +274 -0
  934. libevtx_python-20260705/m4/libtool.m4 +8427 -0
  935. libevtx_python-20260705/m4/ltoptions.m4 +437 -0
  936. libevtx_python-20260705/m4/ltsugar.m4 +124 -0
  937. libevtx_python-20260705/m4/ltversion.m4 +24 -0
  938. libevtx_python-20260705/m4/lt~obsolete.m4 +99 -0
  939. libevtx_python-20260705/m4/pthread.m4 +126 -0
  940. libevtx_python-20260705/m4/python.m4 +222 -0
  941. libevtx_python-20260705/m4/tests.m4 +319 -0
  942. libevtx_python-20260705/m4/types.m4 +133 -0
  943. libevtx_python-20260705/m4/yaltools.m4 +99 -0
  944. libevtx_python-20260705/manuals/Makefile.am +12 -0
  945. libevtx_python-20260705/manuals/Makefile.in +871 -0
  946. libevtx_python-20260705/manuals/evtxexport.1 +112 -0
  947. libevtx_python-20260705/manuals/evtxinfo.1 +72 -0
  948. libevtx_python-20260705/manuals/libevtx.3 +676 -0
  949. libevtx_python-20260705/missing +215 -0
  950. libevtx_python-20260705/msvscpp/Makefile.in +788 -0
  951. libevtx_python-20260705/ossfuzz/Makefile.in +1026 -0
  952. libevtx_python-20260705/ossfuzz/file_fuzzer.cc +99 -0
  953. libevtx_python-20260705/ossfuzz/ossfuzz_libbfio.h +58 -0
  954. libevtx_python-20260705/ossfuzz/ossfuzz_libevtx.h +30 -0
  955. libevtx_python-20260705/ossfuzz/record_fuzzer.cc +121 -0
  956. libevtx_python-20260705/po/Makevars +45 -0
  957. libevtx_python-20260705/pyevtx/Makefile.am +56 -0
  958. libevtx_python-20260705/pyevtx/Makefile.in +1147 -0
  959. libevtx_python-20260705/pyevtx/pyevtx.c +742 -0
  960. libevtx_python-20260705/pyevtx/pyevtx.h +71 -0
  961. libevtx_python-20260705/pyevtx/pyevtx_codepage.c +138 -0
  962. libevtx_python-20260705/pyevtx/pyevtx_codepage.h +42 -0
  963. libevtx_python-20260705/pyevtx/pyevtx_datetime.c +691 -0
  964. libevtx_python-20260705/pyevtx/pyevtx_datetime.h +65 -0
  965. libevtx_python-20260705/pyevtx/pyevtx_error.c +422 -0
  966. libevtx_python-20260705/pyevtx/pyevtx_error.h +60 -0
  967. libevtx_python-20260705/pyevtx/pyevtx_event_levels.c +334 -0
  968. libevtx_python-20260705/pyevtx/pyevtx_event_levels.h +63 -0
  969. libevtx_python-20260705/pyevtx/pyevtx_file.c +1774 -0
  970. libevtx_python-20260705/pyevtx/pyevtx_file.h +145 -0
  971. libevtx_python-20260705/pyevtx/pyevtx_file_flags.c +292 -0
  972. libevtx_python-20260705/pyevtx/pyevtx_file_flags.h +63 -0
  973. libevtx_python-20260705/pyevtx/pyevtx_file_object_io_handle.c +1524 -0
  974. libevtx_python-20260705/pyevtx/pyevtx_file_object_io_handle.h +141 -0
  975. libevtx_python-20260705/pyevtx/pyevtx_integer.c +399 -0
  976. libevtx_python-20260705/pyevtx/pyevtx_integer.h +56 -0
  977. libevtx_python-20260705/pyevtx/pyevtx_libbfio.h +54 -0
  978. libevtx_python-20260705/pyevtx/pyevtx_libcerror.h +50 -0
  979. libevtx_python-20260705/pyevtx/pyevtx_libclocale.h +50 -0
  980. libevtx_python-20260705/pyevtx/pyevtx_libevtx.h +30 -0
  981. libevtx_python-20260705/pyevtx/pyevtx_python.h +83 -0
  982. libevtx_python-20260705/pyevtx/pyevtx_record.c +2237 -0
  983. libevtx_python-20260705/pyevtx/pyevtx_record.h +155 -0
  984. libevtx_python-20260705/pyevtx/pyevtx_records.c +452 -0
  985. libevtx_python-20260705/pyevtx/pyevtx_records.h +95 -0
  986. libevtx_python-20260705/pyevtx/pyevtx_strings.c +451 -0
  987. libevtx_python-20260705/pyevtx/pyevtx_strings.h +95 -0
  988. libevtx_python-20260705/pyevtx/pyevtx_unused.h +44 -0
  989. libevtx_python-20260705/pyproject.toml +35 -0
  990. libevtx_python-20260705/pyproject.toml.in +35 -0
  991. libevtx_python-20260705/tests/Makefile.am +480 -0
  992. libevtx_python-20260705/tests/Makefile.in +1696 -0
  993. libevtx_python-20260705/tests/atlocal.in +29 -0
  994. libevtx_python-20260705/tests/evtx_test_chunk.c +571 -0
  995. libevtx_python-20260705/tests/evtx_test_chunks_table.c +116 -0
  996. libevtx_python-20260705/tests/evtx_test_error.c +150 -0
  997. libevtx_python-20260705/tests/evtx_test_file.c +2239 -0
  998. libevtx_python-20260705/tests/evtx_test_functions.c +562 -0
  999. libevtx_python-20260705/tests/evtx_test_functions.h +66 -0
  1000. libevtx_python-20260705/tests/evtx_test_getopt.c +190 -0
  1001. libevtx_python-20260705/tests/evtx_test_getopt.h +68 -0
  1002. libevtx_python-20260705/tests/evtx_test_io_handle.c +447 -0
  1003. libevtx_python-20260705/tests/evtx_test_libbfio.h +58 -0
  1004. libevtx_python-20260705/tests/evtx_test_libcerror.h +50 -0
  1005. libevtx_python-20260705/tests/evtx_test_libclocale.h +50 -0
  1006. libevtx_python-20260705/tests/evtx_test_libcnotify.h +50 -0
  1007. libevtx_python-20260705/tests/evtx_test_libevtx.h +30 -0
  1008. libevtx_python-20260705/tests/evtx_test_libuna.h +60 -0
  1009. libevtx_python-20260705/tests/evtx_test_macros.h +257 -0
  1010. libevtx_python-20260705/tests/evtx_test_memory.c +199 -0
  1011. libevtx_python-20260705/tests/evtx_test_memory.h +66 -0
  1012. libevtx_python-20260705/tests/evtx_test_notify.c +229 -0
  1013. libevtx_python-20260705/tests/evtx_test_record.c +178 -0
  1014. libevtx_python-20260705/tests/evtx_test_record_values.c +3806 -0
  1015. libevtx_python-20260705/tests/evtx_test_support.c +796 -0
  1016. libevtx_python-20260705/tests/evtx_test_template_definition.c +305 -0
  1017. libevtx_python-20260705/tests/evtx_test_tools_info_handle.c +299 -0
  1018. libevtx_python-20260705/tests/evtx_test_tools_message_handle.c +299 -0
  1019. libevtx_python-20260705/tests/evtx_test_tools_message_string.c +304 -0
  1020. libevtx_python-20260705/tests/evtx_test_tools_output.c +105 -0
  1021. libevtx_python-20260705/tests/evtx_test_tools_path_handle.c +299 -0
  1022. libevtx_python-20260705/tests/evtx_test_tools_registry_file.c +299 -0
  1023. libevtx_python-20260705/tests/evtx_test_tools_resource_file.c +304 -0
  1024. libevtx_python-20260705/tests/evtx_test_tools_signal.c +213 -0
  1025. libevtx_python-20260705/tests/evtx_test_unused.h +50 -0
  1026. libevtx_python-20260705/tests/generate_test_inputs.sh +301 -0
  1027. libevtx_python-20260705/tests/package.m4 +5 -0
  1028. libevtx_python-20260705/tests/pyevtx_test_file.py +215 -0
  1029. libevtx_python-20260705/tests/pyevtx_test_support.py +111 -0
  1030. libevtx_python-20260705/tests/test_library.at +41 -0
  1031. libevtx_python-20260705/tests/test_macros.at +188 -0
  1032. libevtx_python-20260705/tests/test_manpages.at +73 -0
  1033. libevtx_python-20260705/tests/test_python_module.at +145 -0
  1034. libevtx_python-20260705/tests/test_tools.at +263 -0
  1035. libevtx-20251118/AUTHORS +0 -4
  1036. libevtx-20251118/INSTALL +0 -380
  1037. libevtx-20251118/Makefile.am +0 -115
  1038. libevtx-20251118/Makefile.in +0 -1294
  1039. libevtx-20251118/PKG-INFO +0 -16
  1040. libevtx-20251118/README +0 -16
  1041. libevtx-20251118/acinclude.m4 +0 -73
  1042. libevtx-20251118/aclocal.m4 +0 -1729
  1043. libevtx-20251118/common/Makefile.in +0 -843
  1044. libevtx-20251118/common/byte_stream.h +0 -257
  1045. libevtx-20251118/common/common.h +0 -43
  1046. libevtx-20251118/common/config.h +0 -674
  1047. libevtx-20251118/common/config.h.in +0 -673
  1048. libevtx-20251118/common/config_borlandc.h +0 -26
  1049. libevtx-20251118/common/config_msc.h +0 -34
  1050. libevtx-20251118/common/config_winapi.h +0 -95
  1051. libevtx-20251118/common/file_stream.h +0 -151
  1052. libevtx-20251118/common/memory.h +0 -129
  1053. libevtx-20251118/common/narrow_string.h +0 -187
  1054. libevtx-20251118/common/system_string.h +0 -154
  1055. libevtx-20251118/common/types.h +0 -392
  1056. libevtx-20251118/common/types.h.in +0 -392
  1057. libevtx-20251118/common/wide_string.h +0 -175
  1058. libevtx-20251118/compile +0 -364
  1059. libevtx-20251118/config.guess +0 -1815
  1060. libevtx-20251118/config.sub +0 -2354
  1061. libevtx-20251118/configure +0 -85375
  1062. libevtx-20251118/configure.ac +0 -275
  1063. libevtx-20251118/depcomp +0 -792
  1064. libevtx-20251118/dpkg/changelog +0 -5
  1065. libevtx-20251118/dpkg/compat +0 -1
  1066. libevtx-20251118/dpkg/control +0 -65
  1067. libevtx-20251118/dpkg/copyright +0 -25
  1068. libevtx-20251118/dpkg/rules +0 -31
  1069. libevtx-20251118/evtxtools/Makefile.am +0 -136
  1070. libevtx-20251118/evtxtools/Makefile.in +0 -1123
  1071. libevtx-20251118/evtxtools/evtxexport.c +0 -606
  1072. libevtx-20251118/evtxtools/evtxinfo.c +0 -333
  1073. libevtx-20251118/evtxtools/evtxinput.c +0 -251
  1074. libevtx-20251118/evtxtools/evtxinput.h +0 -62
  1075. libevtx-20251118/evtxtools/evtxtools_getopt.c +0 -190
  1076. libevtx-20251118/evtxtools/evtxtools_getopt.h +0 -68
  1077. libevtx-20251118/evtxtools/evtxtools_i18n.h +0 -48
  1078. libevtx-20251118/evtxtools/evtxtools_libbfio.h +0 -58
  1079. libevtx-20251118/evtxtools/evtxtools_libcdirectory.h +0 -50
  1080. libevtx-20251118/evtxtools/evtxtools_libcerror.h +0 -50
  1081. libevtx-20251118/evtxtools/evtxtools_libclocale.h +0 -50
  1082. libevtx-20251118/evtxtools/evtxtools_libcnotify.h +0 -50
  1083. libevtx-20251118/evtxtools/evtxtools_libcpath.h +0 -48
  1084. libevtx-20251118/evtxtools/evtxtools_libcsplit.h +0 -52
  1085. libevtx-20251118/evtxtools/evtxtools_libevtx.h +0 -30
  1086. libevtx-20251118/evtxtools/evtxtools_libexe.h +0 -50
  1087. libevtx-20251118/evtxtools/evtxtools_libfcache.h +0 -50
  1088. libevtx-20251118/evtxtools/evtxtools_libfdatetime.h +0 -56
  1089. libevtx-20251118/evtxtools/evtxtools_libfguid.h +0 -49
  1090. libevtx-20251118/evtxtools/evtxtools_libfvalue.h +0 -59
  1091. libevtx-20251118/evtxtools/evtxtools_libfwevt.h +0 -62
  1092. libevtx-20251118/evtxtools/evtxtools_libfwnt.h +0 -58
  1093. libevtx-20251118/evtxtools/evtxtools_libregf.h +0 -52
  1094. libevtx-20251118/evtxtools/evtxtools_libuna.h +0 -60
  1095. libevtx-20251118/evtxtools/evtxtools_libwrc.h +0 -56
  1096. libevtx-20251118/evtxtools/evtxtools_output.c +0 -207
  1097. libevtx-20251118/evtxtools/evtxtools_output.h +0 -55
  1098. libevtx-20251118/evtxtools/evtxtools_signal.c +0 -262
  1099. libevtx-20251118/evtxtools/evtxtools_signal.h +0 -72
  1100. libevtx-20251118/evtxtools/evtxtools_system_split_string.h +0 -73
  1101. libevtx-20251118/evtxtools/evtxtools_unused.h +0 -50
  1102. libevtx-20251118/evtxtools/evtxtools_wide_string.c +0 -69
  1103. libevtx-20251118/evtxtools/evtxtools_wide_string.h +0 -54
  1104. libevtx-20251118/evtxtools/export_handle.c +0 -2974
  1105. libevtx-20251118/evtxtools/export_handle.h +0 -257
  1106. libevtx-20251118/evtxtools/info_handle.c +0 -604
  1107. libevtx-20251118/evtxtools/info_handle.h +0 -101
  1108. libevtx-20251118/evtxtools/log_handle.c +0 -276
  1109. libevtx-20251118/evtxtools/log_handle.h +0 -71
  1110. libevtx-20251118/evtxtools/message_handle.c +0 -4109
  1111. libevtx-20251118/evtxtools/message_handle.h +0 -304
  1112. libevtx-20251118/evtxtools/message_string.c +0 -611
  1113. libevtx-20251118/evtxtools/message_string.h +0 -79
  1114. libevtx-20251118/evtxtools/path_handle.c +0 -407
  1115. libevtx-20251118/evtxtools/path_handle.h +0 -69
  1116. libevtx-20251118/evtxtools/registry_file.c +0 -903
  1117. libevtx-20251118/evtxtools/registry_file.h +0 -124
  1118. libevtx-20251118/evtxtools/resource_file.c +0 -2570
  1119. libevtx-20251118/evtxtools/resource_file.h +0 -192
  1120. libevtx-20251118/include/Makefile.in +0 -904
  1121. libevtx-20251118/include/libevtx/codepage.h +0 -122
  1122. libevtx-20251118/include/libevtx/definitions.h +0 -73
  1123. libevtx-20251118/include/libevtx/definitions.h.in +0 -73
  1124. libevtx-20251118/include/libevtx/error.h +0 -291
  1125. libevtx-20251118/include/libevtx/extern.h +0 -44
  1126. libevtx-20251118/include/libevtx/features.h +0 -50
  1127. libevtx-20251118/include/libevtx/features.h.in +0 -50
  1128. libevtx-20251118/include/libevtx/types.h +0 -213
  1129. libevtx-20251118/include/libevtx/types.h.in +0 -213
  1130. libevtx-20251118/include/libevtx.h +0 -868
  1131. libevtx-20251118/include/libevtx.h.in +0 -868
  1132. libevtx-20251118/install-sh +0 -541
  1133. libevtx-20251118/libbfio/Makefile.in +0 -1004
  1134. libevtx-20251118/libbfio/libbfio_codepage.h +0 -90
  1135. libevtx-20251118/libbfio/libbfio_definitions.h +0 -89
  1136. libevtx-20251118/libbfio/libbfio_error.c +0 -111
  1137. libevtx-20251118/libbfio/libbfio_error.h +0 -74
  1138. libevtx-20251118/libbfio/libbfio_extern.h +0 -46
  1139. libevtx-20251118/libbfio/libbfio_file.c +0 -444
  1140. libevtx-20251118/libbfio/libbfio_file.h +0 -90
  1141. libevtx-20251118/libbfio/libbfio_file_io_handle.c +0 -1198
  1142. libevtx-20251118/libbfio/libbfio_file_io_handle.h +0 -152
  1143. libevtx-20251118/libbfio/libbfio_file_pool.c +0 -494
  1144. libevtx-20251118/libbfio/libbfio_file_pool.h +0 -81
  1145. libevtx-20251118/libbfio/libbfio_file_range.c +0 -468
  1146. libevtx-20251118/libbfio/libbfio_file_range.h +0 -104
  1147. libevtx-20251118/libbfio/libbfio_file_range_io_handle.c +0 -1158
  1148. libevtx-20251118/libbfio/libbfio_file_range_io_handle.h +0 -160
  1149. libevtx-20251118/libbfio/libbfio_handle.c +0 -2708
  1150. libevtx-20251118/libbfio/libbfio_handle.h +0 -363
  1151. libevtx-20251118/libbfio/libbfio_libcdata.h +0 -54
  1152. libevtx-20251118/libbfio/libbfio_libcerror.h +0 -50
  1153. libevtx-20251118/libbfio/libbfio_libcfile.h +0 -50
  1154. libevtx-20251118/libbfio/libbfio_libclocale.h +0 -50
  1155. libevtx-20251118/libbfio/libbfio_libcpath.h +0 -48
  1156. libevtx-20251118/libbfio/libbfio_libcthreads.h +0 -64
  1157. libevtx-20251118/libbfio/libbfio_libuna.h +0 -60
  1158. libevtx-20251118/libbfio/libbfio_memory_range.c +0 -205
  1159. libevtx-20251118/libbfio/libbfio_memory_range.h +0 -60
  1160. libevtx-20251118/libbfio/libbfio_memory_range_io_handle.c +0 -871
  1161. libevtx-20251118/libbfio/libbfio_memory_range_io_handle.h +0 -129
  1162. libevtx-20251118/libbfio/libbfio_pool.c +0 -3521
  1163. libevtx-20251118/libbfio/libbfio_pool.h +0 -275
  1164. libevtx-20251118/libbfio/libbfio_support.c +0 -93
  1165. libevtx-20251118/libbfio/libbfio_support.h +0 -58
  1166. libevtx-20251118/libbfio/libbfio_system_string.c +0 -1017
  1167. libevtx-20251118/libbfio/libbfio_system_string.h +0 -95
  1168. libevtx-20251118/libbfio/libbfio_types.h +0 -49
  1169. libevtx-20251118/libbfio/libbfio_unused.h +0 -44
  1170. libevtx-20251118/libcdata/Makefile.in +0 -983
  1171. libevtx-20251118/libcdata/libcdata_array.c +0 -2015
  1172. libevtx-20251118/libcdata/libcdata_array.h +0 -200
  1173. libevtx-20251118/libcdata/libcdata_btree.c +0 -964
  1174. libevtx-20251118/libcdata/libcdata_btree.h +0 -141
  1175. libevtx-20251118/libcdata/libcdata_btree_node.c +0 -1607
  1176. libevtx-20251118/libcdata/libcdata_btree_node.h +0 -101
  1177. libevtx-20251118/libcdata/libcdata_btree_values_list.c +0 -217
  1178. libevtx-20251118/libcdata/libcdata_btree_values_list.h +0 -55
  1179. libevtx-20251118/libcdata/libcdata_definitions.h +0 -81
  1180. libevtx-20251118/libcdata/libcdata_error.c +0 -111
  1181. libevtx-20251118/libcdata/libcdata_error.h +0 -74
  1182. libevtx-20251118/libcdata/libcdata_extern.h +0 -46
  1183. libevtx-20251118/libcdata/libcdata_libcerror.h +0 -50
  1184. libevtx-20251118/libcdata/libcdata_libcthreads.h +0 -64
  1185. libevtx-20251118/libcdata/libcdata_list.c +0 -2906
  1186. libevtx-20251118/libcdata/libcdata_list.h +0 -235
  1187. libevtx-20251118/libcdata/libcdata_list_element.c +0 -926
  1188. libevtx-20251118/libcdata/libcdata_list_element.h +0 -142
  1189. libevtx-20251118/libcdata/libcdata_range_list.c +0 -4922
  1190. libevtx-20251118/libcdata/libcdata_range_list.h +0 -382
  1191. libevtx-20251118/libcdata/libcdata_range_list_value.c +0 -429
  1192. libevtx-20251118/libcdata/libcdata_range_list_value.h +0 -100
  1193. libevtx-20251118/libcdata/libcdata_support.c +0 -39
  1194. libevtx-20251118/libcdata/libcdata_support.h +0 -47
  1195. libevtx-20251118/libcdata/libcdata_tree_node.c +0 -4216
  1196. libevtx-20251118/libcdata/libcdata_tree_node.h +0 -301
  1197. libevtx-20251118/libcdata/libcdata_types.h +0 -57
  1198. libevtx-20251118/libcdata/libcdata_unused.h +0 -44
  1199. libevtx-20251118/libcdirectory/Makefile.in +0 -955
  1200. libevtx-20251118/libcdirectory/libcdirectory_definitions.h +0 -67
  1201. libevtx-20251118/libcdirectory/libcdirectory_directory.c +0 -1676
  1202. libevtx-20251118/libcdirectory/libcdirectory_directory.h +0 -125
  1203. libevtx-20251118/libcdirectory/libcdirectory_directory_entry.c +0 -791
  1204. libevtx-20251118/libcdirectory/libcdirectory_directory_entry.h +0 -122
  1205. libevtx-20251118/libcdirectory/libcdirectory_error.c +0 -111
  1206. libevtx-20251118/libcdirectory/libcdirectory_error.h +0 -74
  1207. libevtx-20251118/libcdirectory/libcdirectory_extern.h +0 -46
  1208. libevtx-20251118/libcdirectory/libcdirectory_libcerror.h +0 -50
  1209. libevtx-20251118/libcdirectory/libcdirectory_libclocale.h +0 -50
  1210. libevtx-20251118/libcdirectory/libcdirectory_libuna.h +0 -60
  1211. libevtx-20251118/libcdirectory/libcdirectory_support.c +0 -93
  1212. libevtx-20251118/libcdirectory/libcdirectory_support.h +0 -58
  1213. libevtx-20251118/libcdirectory/libcdirectory_system_string.c +0 -1017
  1214. libevtx-20251118/libcdirectory/libcdirectory_system_string.h +0 -95
  1215. libevtx-20251118/libcdirectory/libcdirectory_types.h +0 -49
  1216. libevtx-20251118/libcdirectory/libcdirectory_unused.h +0 -44
  1217. libevtx-20251118/libcdirectory/libcdirectory_wide_string.c +0 -69
  1218. libevtx-20251118/libcdirectory/libcdirectory_wide_string.h +0 -54
  1219. libevtx-20251118/libcerror/Makefile.in +0 -925
  1220. libevtx-20251118/libcerror/libcerror_definitions.h +0 -326
  1221. libevtx-20251118/libcerror/libcerror_error.c +0 -827
  1222. libevtx-20251118/libcerror/libcerror_error.h +0 -125
  1223. libevtx-20251118/libcerror/libcerror_extern.h +0 -46
  1224. libevtx-20251118/libcerror/libcerror_support.c +0 -39
  1225. libevtx-20251118/libcerror/libcerror_support.h +0 -47
  1226. libevtx-20251118/libcerror/libcerror_system.c +0 -587
  1227. libevtx-20251118/libcerror/libcerror_system.h +0 -78
  1228. libevtx-20251118/libcerror/libcerror_types.h +0 -51
  1229. libevtx-20251118/libcerror/libcerror_unused.h +0 -44
  1230. libevtx-20251118/libcfile/Makefile.in +0 -952
  1231. libevtx-20251118/libcfile/libcfile_definitions.h +0 -101
  1232. libevtx-20251118/libcfile/libcfile_error.c +0 -111
  1233. libevtx-20251118/libcfile/libcfile_error.h +0 -74
  1234. libevtx-20251118/libcfile/libcfile_extern.h +0 -46
  1235. libevtx-20251118/libcfile/libcfile_file.c +0 -4570
  1236. libevtx-20251118/libcfile/libcfile_file.h +0 -273
  1237. libevtx-20251118/libcfile/libcfile_libcerror.h +0 -50
  1238. libevtx-20251118/libcfile/libcfile_libclocale.h +0 -50
  1239. libevtx-20251118/libcfile/libcfile_libcnotify.h +0 -50
  1240. libevtx-20251118/libcfile/libcfile_libuna.h +0 -60
  1241. libevtx-20251118/libcfile/libcfile_notify.c +0 -120
  1242. libevtx-20251118/libcfile/libcfile_notify.h +0 -63
  1243. libevtx-20251118/libcfile/libcfile_support.c +0 -1171
  1244. libevtx-20251118/libcfile/libcfile_support.h +0 -98
  1245. libevtx-20251118/libcfile/libcfile_system_string.c +0 -1017
  1246. libevtx-20251118/libcfile/libcfile_system_string.h +0 -95
  1247. libevtx-20251118/libcfile/libcfile_types.h +0 -47
  1248. libevtx-20251118/libcfile/libcfile_unused.h +0 -44
  1249. libevtx-20251118/libcfile/libcfile_winapi.c +0 -815
  1250. libevtx-20251118/libcfile/libcfile_winapi.h +0 -122
  1251. libevtx-20251118/libclocale/Makefile.in +0 -935
  1252. libevtx-20251118/libclocale/libclocale_codepage.c +0 -920
  1253. libevtx-20251118/libclocale/libclocale_codepage.h +0 -77
  1254. libevtx-20251118/libclocale/libclocale_definitions.h +0 -106
  1255. libevtx-20251118/libclocale/libclocale_extern.h +0 -46
  1256. libevtx-20251118/libclocale/libclocale_libcerror.h +0 -50
  1257. libevtx-20251118/libclocale/libclocale_locale.c +0 -494
  1258. libevtx-20251118/libclocale/libclocale_locale.h +0 -66
  1259. libevtx-20251118/libclocale/libclocale_support.c +0 -130
  1260. libevtx-20251118/libclocale/libclocale_support.h +0 -55
  1261. libevtx-20251118/libclocale/libclocale_unused.h +0 -44
  1262. libevtx-20251118/libclocale/libclocale_wide_string.c +0 -69
  1263. libevtx-20251118/libclocale/libclocale_wide_string.h +0 -54
  1264. libevtx-20251118/libcnotify/Makefile.in +0 -933
  1265. libevtx-20251118/libcnotify/libcnotify_definitions.h +0 -54
  1266. libevtx-20251118/libcnotify/libcnotify_extern.h +0 -46
  1267. libevtx-20251118/libcnotify/libcnotify_libcerror.h +0 -50
  1268. libevtx-20251118/libcnotify/libcnotify_print.c +0 -400
  1269. libevtx-20251118/libcnotify/libcnotify_print.h +0 -68
  1270. libevtx-20251118/libcnotify/libcnotify_stream.c +0 -182
  1271. libevtx-20251118/libcnotify/libcnotify_stream.h +0 -56
  1272. libevtx-20251118/libcnotify/libcnotify_support.c +0 -39
  1273. libevtx-20251118/libcnotify/libcnotify_support.h +0 -49
  1274. libevtx-20251118/libcnotify/libcnotify_unused.h +0 -44
  1275. libevtx-20251118/libcnotify/libcnotify_verbose.c +0 -38
  1276. libevtx-20251118/libcnotify/libcnotify_verbose.h +0 -50
  1277. libevtx-20251118/libcpath/Makefile.in +0 -937
  1278. libevtx-20251118/libcpath/libcpath_definitions.h +0 -83
  1279. libevtx-20251118/libcpath/libcpath_error.c +0 -111
  1280. libevtx-20251118/libcpath/libcpath_error.h +0 -74
  1281. libevtx-20251118/libcpath/libcpath_extern.h +0 -46
  1282. libevtx-20251118/libcpath/libcpath_libcerror.h +0 -50
  1283. libevtx-20251118/libcpath/libcpath_libclocale.h +0 -50
  1284. libevtx-20251118/libcpath/libcpath_libcsplit.h +0 -52
  1285. libevtx-20251118/libcpath/libcpath_libuna.h +0 -60
  1286. libevtx-20251118/libcpath/libcpath_path.c +0 -7174
  1287. libevtx-20251118/libcpath/libcpath_path.h +0 -273
  1288. libevtx-20251118/libcpath/libcpath_support.c +0 -93
  1289. libevtx-20251118/libcpath/libcpath_support.h +0 -58
  1290. libevtx-20251118/libcpath/libcpath_system_string.c +0 -1017
  1291. libevtx-20251118/libcpath/libcpath_system_string.h +0 -95
  1292. libevtx-20251118/libcpath/libcpath_unused.h +0 -44
  1293. libevtx-20251118/libcsplit/Makefile.in +0 -950
  1294. libevtx-20251118/libcsplit/libcsplit_definitions.h +0 -47
  1295. libevtx-20251118/libcsplit/libcsplit_error.c +0 -111
  1296. libevtx-20251118/libcsplit/libcsplit_error.h +0 -74
  1297. libevtx-20251118/libcsplit/libcsplit_extern.h +0 -46
  1298. libevtx-20251118/libcsplit/libcsplit_libcerror.h +0 -50
  1299. libevtx-20251118/libcsplit/libcsplit_narrow_split_string.c +0 -547
  1300. libevtx-20251118/libcsplit/libcsplit_narrow_split_string.h +0 -107
  1301. libevtx-20251118/libcsplit/libcsplit_narrow_string.c +0 -288
  1302. libevtx-20251118/libcsplit/libcsplit_narrow_string.h +0 -49
  1303. libevtx-20251118/libcsplit/libcsplit_support.c +0 -39
  1304. libevtx-20251118/libcsplit/libcsplit_support.h +0 -47
  1305. libevtx-20251118/libcsplit/libcsplit_types.h +0 -49
  1306. libevtx-20251118/libcsplit/libcsplit_unused.h +0 -44
  1307. libevtx-20251118/libcsplit/libcsplit_wide_split_string.c +0 -551
  1308. libevtx-20251118/libcsplit/libcsplit_wide_split_string.h +0 -111
  1309. libevtx-20251118/libcsplit/libcsplit_wide_string.c +0 -292
  1310. libevtx-20251118/libcsplit/libcsplit_wide_string.h +0 -53
  1311. libevtx-20251118/libcthreads/Makefile.in +0 -985
  1312. libevtx-20251118/libcthreads/libcthreads_condition.c +0 -735
  1313. libevtx-20251118/libcthreads/libcthreads_condition.h +0 -120
  1314. libevtx-20251118/libcthreads/libcthreads_definitions.h +0 -84
  1315. libevtx-20251118/libcthreads/libcthreads_error.c +0 -111
  1316. libevtx-20251118/libcthreads/libcthreads_error.h +0 -74
  1317. libevtx-20251118/libcthreads/libcthreads_extern.h +0 -46
  1318. libevtx-20251118/libcthreads/libcthreads_libcerror.h +0 -50
  1319. libevtx-20251118/libcthreads/libcthreads_lock.c +0 -391
  1320. libevtx-20251118/libcthreads/libcthreads_lock.h +0 -88
  1321. libevtx-20251118/libcthreads/libcthreads_mutex.c +0 -601
  1322. libevtx-20251118/libcthreads/libcthreads_mutex.h +0 -98
  1323. libevtx-20251118/libcthreads/libcthreads_queue.c +0 -1150
  1324. libevtx-20251118/libcthreads/libcthreads_queue.h +0 -136
  1325. libevtx-20251118/libcthreads/libcthreads_read_write_lock.c +0 -690
  1326. libevtx-20251118/libcthreads/libcthreads_read_write_lock.h +0 -119
  1327. libevtx-20251118/libcthreads/libcthreads_repeating_thread.c +0 -644
  1328. libevtx-20251118/libcthreads/libcthreads_repeating_thread.h +0 -115
  1329. libevtx-20251118/libcthreads/libcthreads_support.c +0 -39
  1330. libevtx-20251118/libcthreads/libcthreads_support.h +0 -47
  1331. libevtx-20251118/libcthreads/libcthreads_thread.c +0 -405
  1332. libevtx-20251118/libcthreads/libcthreads_thread.h +0 -95
  1333. libevtx-20251118/libcthreads/libcthreads_thread_attributes.c +0 -149
  1334. libevtx-20251118/libcthreads/libcthreads_thread_attributes.h +0 -78
  1335. libevtx-20251118/libcthreads/libcthreads_thread_pool.c +0 -1721
  1336. libevtx-20251118/libcthreads/libcthreads_thread_pool.h +0 -177
  1337. libevtx-20251118/libcthreads/libcthreads_types.h +0 -63
  1338. libevtx-20251118/libcthreads/libcthreads_unused.h +0 -44
  1339. libevtx-20251118/libevtx/Makefile.in +0 -1106
  1340. libevtx-20251118/libevtx/evtx_chunk.h +0 -104
  1341. libevtx-20251118/libevtx/evtx_event_record.h +0 -64
  1342. libevtx-20251118/libevtx/evtx_file_header.h +0 -104
  1343. libevtx-20251118/libevtx/libevtx.c +0 -80
  1344. libevtx-20251118/libevtx/libevtx.rc +0 -38
  1345. libevtx-20251118/libevtx/libevtx.rc.in +0 -38
  1346. libevtx-20251118/libevtx/libevtx_byte_stream.c +0 -104
  1347. libevtx-20251118/libevtx/libevtx_byte_stream.h +0 -44
  1348. libevtx-20251118/libevtx/libevtx_checksum.c +0 -200
  1349. libevtx-20251118/libevtx/libevtx_checksum.h +0 -56
  1350. libevtx-20251118/libevtx/libevtx_chunk.c +0 -1163
  1351. libevtx-20251118/libevtx/libevtx_chunk.h +0 -109
  1352. libevtx-20251118/libevtx/libevtx_chunks_table.c +0 -446
  1353. libevtx-20251118/libevtx/libevtx_chunks_table.h +0 -83
  1354. libevtx-20251118/libevtx/libevtx_codepage.c +0 -107
  1355. libevtx-20251118/libevtx/libevtx_codepage.h +0 -116
  1356. libevtx-20251118/libevtx/libevtx_debug.c +0 -256
  1357. libevtx-20251118/libevtx/libevtx_debug.h +0 -55
  1358. libevtx-20251118/libevtx/libevtx_definitions.h +0 -207
  1359. libevtx-20251118/libevtx/libevtx_definitions.h.in +0 -207
  1360. libevtx-20251118/libevtx/libevtx_error.c +0 -111
  1361. libevtx-20251118/libevtx/libevtx_error.h +0 -74
  1362. libevtx-20251118/libevtx/libevtx_extern.h +0 -46
  1363. libevtx-20251118/libevtx/libevtx_file.c +0 -2285
  1364. libevtx-20251118/libevtx/libevtx_file.h +0 -212
  1365. libevtx-20251118/libevtx/libevtx_i18n.c +0 -63
  1366. libevtx-20251118/libevtx/libevtx_i18n.h +0 -55
  1367. libevtx-20251118/libevtx/libevtx_io_handle.c +0 -584
  1368. libevtx-20251118/libevtx/libevtx_io_handle.h +0 -127
  1369. libevtx-20251118/libevtx/libevtx_libbfio.h +0 -58
  1370. libevtx-20251118/libevtx/libevtx_libcdata.h +0 -54
  1371. libevtx-20251118/libevtx/libevtx_libcerror.h +0 -50
  1372. libevtx-20251118/libevtx/libevtx_libclocale.h +0 -50
  1373. libevtx-20251118/libevtx/libevtx_libcnotify.h +0 -50
  1374. libevtx-20251118/libevtx/libevtx_libfcache.h +0 -50
  1375. libevtx-20251118/libevtx/libevtx_libfdata.h +0 -54
  1376. libevtx-20251118/libevtx/libevtx_libfdatetime.h +0 -56
  1377. libevtx-20251118/libevtx/libevtx_libfguid.h +0 -49
  1378. libevtx-20251118/libevtx/libevtx_libfwevt.h +0 -62
  1379. libevtx-20251118/libevtx/libevtx_libuna.h +0 -60
  1380. libevtx-20251118/libevtx/libevtx_notify.c +0 -120
  1381. libevtx-20251118/libevtx/libevtx_notify.h +0 -63
  1382. libevtx-20251118/libevtx/libevtx_record.c +0 -2079
  1383. libevtx-20251118/libevtx/libevtx_record.h +0 -337
  1384. libevtx-20251118/libevtx/libevtx_record_values.c +0 -6312
  1385. libevtx-20251118/libevtx/libevtx_record_values.h +0 -388
  1386. libevtx-20251118/libevtx/libevtx_support.c +0 -429
  1387. libevtx-20251118/libevtx/libevtx_support.h +0 -82
  1388. libevtx-20251118/libevtx/libevtx_template_definition.c +0 -359
  1389. libevtx-20251118/libevtx/libevtx_template_definition.h +0 -80
  1390. libevtx-20251118/libevtx/libevtx_types.h +0 -56
  1391. libevtx-20251118/libevtx/libevtx_unused.h +0 -44
  1392. libevtx-20251118/libevtx.spec +0 -100
  1393. libevtx-20251118/libexe/Makefile.in +0 -1050
  1394. libevtx-20251118/libexe/exe_file_header.h +0 -508
  1395. libevtx-20251118/libexe/exe_le_header.h +0 -52
  1396. libevtx-20251118/libexe/exe_mz_header.h +0 -124
  1397. libevtx-20251118/libexe/exe_ne_header.h +0 -56
  1398. libevtx-20251118/libexe/exe_pe_header.h +0 -48
  1399. libevtx-20251118/libexe/exe_section_table.h +0 -93
  1400. libevtx-20251118/libexe/libexe_codepage.h +0 -90
  1401. libevtx-20251118/libexe/libexe_coff_header.c +0 -358
  1402. libevtx-20251118/libexe/libexe_coff_header.h +0 -77
  1403. libevtx-20251118/libexe/libexe_coff_optional_header.c +0 -1257
  1404. libevtx-20251118/libexe/libexe_coff_optional_header.h +0 -72
  1405. libevtx-20251118/libexe/libexe_data_directory_descriptor.h +0 -52
  1406. libevtx-20251118/libexe/libexe_debug.c +0 -532
  1407. libevtx-20251118/libexe/libexe_debug.h +0 -67
  1408. libevtx-20251118/libexe/libexe_debug_data.c +0 -246
  1409. libevtx-20251118/libexe/libexe_debug_data.h +0 -64
  1410. libevtx-20251118/libexe/libexe_definitions.h +0 -163
  1411. libevtx-20251118/libexe/libexe_error.c +0 -111
  1412. libevtx-20251118/libexe/libexe_error.h +0 -74
  1413. libevtx-20251118/libexe/libexe_export_table.c +0 -248
  1414. libevtx-20251118/libexe/libexe_export_table.h +0 -64
  1415. libevtx-20251118/libexe/libexe_extern.h +0 -46
  1416. libevtx-20251118/libexe/libexe_file.c +0 -1693
  1417. libevtx-20251118/libexe/libexe_file.h +0 -165
  1418. libevtx-20251118/libexe/libexe_import_table.c +0 -248
  1419. libevtx-20251118/libexe/libexe_import_table.h +0 -64
  1420. libevtx-20251118/libexe/libexe_io_handle.c +0 -1265
  1421. libevtx-20251118/libexe/libexe_io_handle.h +0 -142
  1422. libevtx-20251118/libexe/libexe_le_header.c +0 -297
  1423. libevtx-20251118/libexe/libexe_le_header.h +0 -69
  1424. libevtx-20251118/libexe/libexe_libbfio.h +0 -58
  1425. libevtx-20251118/libexe/libexe_libcdata.h +0 -54
  1426. libevtx-20251118/libexe/libexe_libcerror.h +0 -50
  1427. libevtx-20251118/libexe/libexe_libclocale.h +0 -50
  1428. libevtx-20251118/libexe/libexe_libcnotify.h +0 -50
  1429. libevtx-20251118/libexe/libexe_libfcache.h +0 -50
  1430. libevtx-20251118/libexe/libexe_libfdata.h +0 -54
  1431. libevtx-20251118/libexe/libexe_libfdatetime.h +0 -56
  1432. libevtx-20251118/libexe/libexe_libuna.h +0 -60
  1433. libevtx-20251118/libexe/libexe_mz_header.c +0 -440
  1434. libevtx-20251118/libexe/libexe_mz_header.h +0 -69
  1435. libevtx-20251118/libexe/libexe_ne_header.c +0 -297
  1436. libevtx-20251118/libexe/libexe_ne_header.h +0 -69
  1437. libevtx-20251118/libexe/libexe_notify.c +0 -120
  1438. libevtx-20251118/libexe/libexe_notify.h +0 -63
  1439. libevtx-20251118/libexe/libexe_section.c +0 -996
  1440. libevtx-20251118/libexe/libexe_section.h +0 -164
  1441. libevtx-20251118/libexe/libexe_section_descriptor.c +0 -320
  1442. libevtx-20251118/libexe/libexe_section_descriptor.h +0 -87
  1443. libevtx-20251118/libexe/libexe_section_io_handle.c +0 -651
  1444. libevtx-20251118/libexe/libexe_section_io_handle.h +0 -111
  1445. libevtx-20251118/libexe/libexe_support.c +0 -430
  1446. libevtx-20251118/libexe/libexe_support.h +0 -82
  1447. libevtx-20251118/libexe/libexe_types.h +0 -49
  1448. libevtx-20251118/libexe/libexe_unused.h +0 -44
  1449. libevtx-20251118/libfcache/Makefile.in +0 -946
  1450. libevtx-20251118/libfcache/libfcache_cache.c +0 -1118
  1451. libevtx-20251118/libfcache/libfcache_cache.h +0 -149
  1452. libevtx-20251118/libfcache/libfcache_cache_value.c +0 -502
  1453. libevtx-20251118/libfcache/libfcache_cache_value.h +0 -132
  1454. libevtx-20251118/libfcache/libfcache_date_time.c +0 -92
  1455. libevtx-20251118/libfcache/libfcache_date_time.h +0 -45
  1456. libevtx-20251118/libfcache/libfcache_definitions.h +0 -58
  1457. libevtx-20251118/libfcache/libfcache_error.c +0 -111
  1458. libevtx-20251118/libfcache/libfcache_error.h +0 -74
  1459. libevtx-20251118/libfcache/libfcache_extern.h +0 -46
  1460. libevtx-20251118/libfcache/libfcache_libcdata.h +0 -54
  1461. libevtx-20251118/libfcache/libfcache_libcerror.h +0 -50
  1462. libevtx-20251118/libfcache/libfcache_support.c +0 -41
  1463. libevtx-20251118/libfcache/libfcache_support.h +0 -47
  1464. libevtx-20251118/libfcache/libfcache_types.h +0 -49
  1465. libevtx-20251118/libfcache/libfcache_unused.h +0 -44
  1466. libevtx-20251118/libfdata/Makefile.in +0 -999
  1467. libevtx-20251118/libfdata/libfdata_area.c +0 -1482
  1468. libevtx-20251118/libfdata/libfdata_area.h +0 -278
  1469. libevtx-20251118/libfdata/libfdata_cache.c +0 -59
  1470. libevtx-20251118/libfdata/libfdata_cache.h +0 -56
  1471. libevtx-20251118/libfdata/libfdata_definitions.h +0 -249
  1472. libevtx-20251118/libfdata/libfdata_error.c +0 -111
  1473. libevtx-20251118/libfdata/libfdata_error.h +0 -74
  1474. libevtx-20251118/libfdata/libfdata_extern.h +0 -46
  1475. libevtx-20251118/libfdata/libfdata_libcdata.h +0 -54
  1476. libevtx-20251118/libfdata/libfdata_libcerror.h +0 -50
  1477. libevtx-20251118/libfdata/libfdata_libcnotify.h +0 -50
  1478. libevtx-20251118/libfdata/libfdata_libfcache.h +0 -50
  1479. libevtx-20251118/libfdata/libfdata_list.c +0 -4426
  1480. libevtx-20251118/libfdata/libfdata_list.h +0 -452
  1481. libevtx-20251118/libfdata/libfdata_list_element.c +0 -824
  1482. libevtx-20251118/libfdata/libfdata_list_element.h +0 -159
  1483. libevtx-20251118/libfdata/libfdata_mapped_range.c +0 -312
  1484. libevtx-20251118/libfdata/libfdata_mapped_range.h +0 -77
  1485. libevtx-20251118/libfdata/libfdata_notify.c +0 -120
  1486. libevtx-20251118/libfdata/libfdata_notify.h +0 -63
  1487. libevtx-20251118/libfdata/libfdata_range.c +0 -358
  1488. libevtx-20251118/libfdata/libfdata_range.h +0 -94
  1489. libevtx-20251118/libfdata/libfdata_range_list.c +0 -1196
  1490. libevtx-20251118/libfdata/libfdata_range_list.h +0 -214
  1491. libevtx-20251118/libfdata/libfdata_segments_array.c +0 -914
  1492. libevtx-20251118/libfdata/libfdata_segments_array.h +0 -94
  1493. libevtx-20251118/libfdata/libfdata_stream.c +0 -2582
  1494. libevtx-20251118/libfdata/libfdata_stream.h +0 -363
  1495. libevtx-20251118/libfdata/libfdata_support.c +0 -41
  1496. libevtx-20251118/libfdata/libfdata_support.h +0 -47
  1497. libevtx-20251118/libfdata/libfdata_types.h +0 -59
  1498. libevtx-20251118/libfdata/libfdata_unused.h +0 -44
  1499. libevtx-20251118/libfdata/libfdata_vector.c +0 -1932
  1500. libevtx-20251118/libfdata/libfdata_vector.h +0 -295
  1501. libevtx-20251118/libfdatetime/Makefile.in +0 -977
  1502. libevtx-20251118/libfdatetime/libfdatetime_date_time_values.c +0 -1906
  1503. libevtx-20251118/libfdatetime/libfdatetime_date_time_values.h +0 -121
  1504. libevtx-20251118/libfdatetime/libfdatetime_definitions.h +0 -121
  1505. libevtx-20251118/libfdatetime/libfdatetime_error.c +0 -111
  1506. libevtx-20251118/libfdatetime/libfdatetime_error.h +0 -74
  1507. libevtx-20251118/libfdatetime/libfdatetime_extern.h +0 -46
  1508. libevtx-20251118/libfdatetime/libfdatetime_fat_date_time.c +0 -1258
  1509. libevtx-20251118/libfdatetime/libfdatetime_fat_date_time.h +0 -172
  1510. libevtx-20251118/libfdatetime/libfdatetime_filetime.c +0 -1465
  1511. libevtx-20251118/libfdatetime/libfdatetime_filetime.h +0 -177
  1512. libevtx-20251118/libfdatetime/libfdatetime_floatingtime.c +0 -1333
  1513. libevtx-20251118/libfdatetime/libfdatetime_floatingtime.h +0 -168
  1514. libevtx-20251118/libfdatetime/libfdatetime_hfs_time.c +0 -1329
  1515. libevtx-20251118/libfdatetime/libfdatetime_hfs_time.h +0 -166
  1516. libevtx-20251118/libfdatetime/libfdatetime_libcerror.h +0 -50
  1517. libevtx-20251118/libfdatetime/libfdatetime_nsf_timedate.c +0 -1373
  1518. libevtx-20251118/libfdatetime/libfdatetime_nsf_timedate.h +0 -177
  1519. libevtx-20251118/libfdatetime/libfdatetime_posix_time.c +0 -1842
  1520. libevtx-20251118/libfdatetime/libfdatetime_posix_time.h +0 -189
  1521. libevtx-20251118/libfdatetime/libfdatetime_support.c +0 -41
  1522. libevtx-20251118/libfdatetime/libfdatetime_support.h +0 -47
  1523. libevtx-20251118/libfdatetime/libfdatetime_systemtime.c +0 -1779
  1524. libevtx-20251118/libfdatetime/libfdatetime_systemtime.h +0 -180
  1525. libevtx-20251118/libfdatetime/libfdatetime_types.h +0 -63
  1526. libevtx-20251118/libfdatetime/libfdatetime_unused.h +0 -44
  1527. libevtx-20251118/libfguid/Makefile.in +0 -927
  1528. libevtx-20251118/libfguid/libfguid_definitions.h +0 -84
  1529. libevtx-20251118/libfguid/libfguid_error.c +0 -111
  1530. libevtx-20251118/libfguid/libfguid_error.h +0 -74
  1531. libevtx-20251118/libfguid/libfguid_extern.h +0 -46
  1532. libevtx-20251118/libfguid/libfguid_identifier.c +0 -2524
  1533. libevtx-20251118/libfguid/libfguid_identifier.h +0 -204
  1534. libevtx-20251118/libfguid/libfguid_libcerror.h +0 -50
  1535. libevtx-20251118/libfguid/libfguid_support.c +0 -41
  1536. libevtx-20251118/libfguid/libfguid_support.h +0 -47
  1537. libevtx-20251118/libfguid/libfguid_types.h +0 -47
  1538. libevtx-20251118/libfguid/libfguid_unused.h +0 -44
  1539. libevtx-20251118/libfvalue/Makefile.in +0 -1036
  1540. libevtx-20251118/libfvalue/libfvalue_binary_data.c +0 -1546
  1541. libevtx-20251118/libfvalue/libfvalue_binary_data.h +0 -114
  1542. libevtx-20251118/libfvalue/libfvalue_codepage.h +0 -103
  1543. libevtx-20251118/libfvalue/libfvalue_data_handle.c +0 -1661
  1544. libevtx-20251118/libfvalue/libfvalue_data_handle.h +0 -195
  1545. libevtx-20251118/libfvalue/libfvalue_definitions.h +0 -350
  1546. libevtx-20251118/libfvalue/libfvalue_error.c +0 -111
  1547. libevtx-20251118/libfvalue/libfvalue_error.h +0 -74
  1548. libevtx-20251118/libfvalue/libfvalue_extern.h +0 -46
  1549. libevtx-20251118/libfvalue/libfvalue_filetime.c +0 -113
  1550. libevtx-20251118/libfvalue/libfvalue_filetime.h +0 -56
  1551. libevtx-20251118/libfvalue/libfvalue_floating_point.c +0 -3456
  1552. libevtx-20251118/libfvalue/libfvalue_floating_point.h +0 -246
  1553. libevtx-20251118/libfvalue/libfvalue_integer.c +0 -2886
  1554. libevtx-20251118/libfvalue/libfvalue_integer.h +0 -261
  1555. libevtx-20251118/libfvalue/libfvalue_libcdata.h +0 -54
  1556. libevtx-20251118/libfvalue/libfvalue_libcerror.h +0 -50
  1557. libevtx-20251118/libfvalue/libfvalue_libcnotify.h +0 -50
  1558. libevtx-20251118/libfvalue/libfvalue_libfdatetime.h +0 -58
  1559. libevtx-20251118/libfvalue/libfvalue_libfguid.h +0 -51
  1560. libevtx-20251118/libfvalue/libfvalue_libfwnt.h +0 -57
  1561. libevtx-20251118/libfvalue/libfvalue_libuna.h +0 -60
  1562. libevtx-20251118/libfvalue/libfvalue_split_utf16_string.c +0 -546
  1563. libevtx-20251118/libfvalue/libfvalue_split_utf16_string.h +0 -114
  1564. libevtx-20251118/libfvalue/libfvalue_split_utf8_string.c +0 -535
  1565. libevtx-20251118/libfvalue/libfvalue_split_utf8_string.h +0 -114
  1566. libevtx-20251118/libfvalue/libfvalue_string.c +0 -3070
  1567. libevtx-20251118/libfvalue/libfvalue_string.h +0 -165
  1568. libevtx-20251118/libfvalue/libfvalue_support.c +0 -41
  1569. libevtx-20251118/libfvalue/libfvalue_support.h +0 -47
  1570. libevtx-20251118/libfvalue/libfvalue_table.c +0 -1357
  1571. libevtx-20251118/libfvalue/libfvalue_table.h +0 -136
  1572. libevtx-20251118/libfvalue/libfvalue_types.h +0 -55
  1573. libevtx-20251118/libfvalue/libfvalue_unused.h +0 -44
  1574. libevtx-20251118/libfvalue/libfvalue_utf16_string.c +0 -300
  1575. libevtx-20251118/libfvalue/libfvalue_utf16_string.h +0 -50
  1576. libevtx-20251118/libfvalue/libfvalue_utf8_string.c +0 -300
  1577. libevtx-20251118/libfvalue/libfvalue_utf8_string.h +0 -50
  1578. libevtx-20251118/libfvalue/libfvalue_value.c +0 -5241
  1579. libevtx-20251118/libfvalue/libfvalue_value.h +0 -753
  1580. libevtx-20251118/libfvalue/libfvalue_value_entry.c +0 -210
  1581. libevtx-20251118/libfvalue/libfvalue_value_entry.h +0 -65
  1582. libevtx-20251118/libfvalue/libfvalue_value_type.c +0 -1183
  1583. libevtx-20251118/libfvalue/libfvalue_value_type.h +0 -100
  1584. libevtx-20251118/libfwevt/Makefile.in +0 -1088
  1585. libevtx-20251118/libfwevt/fwevt_template.h +0 -557
  1586. libevtx-20251118/libfwevt/libfwevt_channel.c +0 -698
  1587. libevtx-20251118/libfwevt/libfwevt_channel.h +0 -110
  1588. libevtx-20251118/libfwevt/libfwevt_data_segment.c +0 -274
  1589. libevtx-20251118/libfwevt/libfwevt_data_segment.h +0 -94
  1590. libevtx-20251118/libfwevt/libfwevt_date_time.c +0 -468
  1591. libevtx-20251118/libfwevt/libfwevt_date_time.h +0 -45
  1592. libevtx-20251118/libfwevt/libfwevt_debug.c +0 -689
  1593. libevtx-20251118/libfwevt/libfwevt_debug.h +0 -70
  1594. libevtx-20251118/libfwevt/libfwevt_definitions.h +0 -168
  1595. libevtx-20251118/libfwevt/libfwevt_error.c +0 -111
  1596. libevtx-20251118/libfwevt/libfwevt_error.h +0 -74
  1597. libevtx-20251118/libfwevt/libfwevt_event.c +0 -545
  1598. libevtx-20251118/libfwevt/libfwevt_event.h +0 -122
  1599. libevtx-20251118/libfwevt/libfwevt_extern.h +0 -46
  1600. libevtx-20251118/libfwevt/libfwevt_floating_point.c +0 -1296
  1601. libevtx-20251118/libfwevt/libfwevt_floating_point.h +0 -77
  1602. libevtx-20251118/libfwevt/libfwevt_integer.c +0 -866
  1603. libevtx-20251118/libfwevt/libfwevt_integer.h +0 -102
  1604. libevtx-20251118/libfwevt/libfwevt_keyword.c +0 -378
  1605. libevtx-20251118/libfwevt/libfwevt_keyword.h +0 -70
  1606. libevtx-20251118/libfwevt/libfwevt_level.c +0 -377
  1607. libevtx-20251118/libfwevt/libfwevt_level.h +0 -70
  1608. libevtx-20251118/libfwevt/libfwevt_libcdata.h +0 -54
  1609. libevtx-20251118/libfwevt/libfwevt_libcerror.h +0 -50
  1610. libevtx-20251118/libfwevt/libfwevt_libcnotify.h +0 -50
  1611. libevtx-20251118/libfwevt/libfwevt_libfdatetime.h +0 -56
  1612. libevtx-20251118/libfwevt/libfwevt_libfguid.h +0 -49
  1613. libevtx-20251118/libfwevt/libfwevt_libfwnt.h +0 -58
  1614. libevtx-20251118/libfwevt/libfwevt_libuna.h +0 -60
  1615. libevtx-20251118/libfwevt/libfwevt_manifest.c +0 -839
  1616. libevtx-20251118/libfwevt/libfwevt_manifest.h +0 -97
  1617. libevtx-20251118/libfwevt/libfwevt_map.c +0 -275
  1618. libevtx-20251118/libfwevt/libfwevt_map.h +0 -70
  1619. libevtx-20251118/libfwevt/libfwevt_notify.c +0 -120
  1620. libevtx-20251118/libfwevt/libfwevt_notify.h +0 -63
  1621. libevtx-20251118/libfwevt/libfwevt_opcode.c +0 -378
  1622. libevtx-20251118/libfwevt/libfwevt_opcode.h +0 -70
  1623. libevtx-20251118/libfwevt/libfwevt_provider.c +0 -4270
  1624. libevtx-20251118/libfwevt/libfwevt_provider.h +0 -325
  1625. libevtx-20251118/libfwevt/libfwevt_support.c +0 -41
  1626. libevtx-20251118/libfwevt/libfwevt_support.h +0 -47
  1627. libevtx-20251118/libfwevt/libfwevt_task.c +0 -402
  1628. libevtx-20251118/libfwevt/libfwevt_task.h +0 -70
  1629. libevtx-20251118/libfwevt/libfwevt_template.c +0 -1616
  1630. libevtx-20251118/libfwevt/libfwevt_template.h +0 -194
  1631. libevtx-20251118/libfwevt/libfwevt_template_item.c +0 -869
  1632. libevtx-20251118/libfwevt/libfwevt_template_item.h +0 -145
  1633. libevtx-20251118/libfwevt/libfwevt_types.h +0 -75
  1634. libevtx-20251118/libfwevt/libfwevt_unused.h +0 -44
  1635. libevtx-20251118/libfwevt/libfwevt_xml_document.c +0 -6739
  1636. libevtx-20251118/libfwevt/libfwevt_xml_document.h +0 -311
  1637. libevtx-20251118/libfwevt/libfwevt_xml_string.c +0 -984
  1638. libevtx-20251118/libfwevt/libfwevt_xml_string.h +0 -72
  1639. libevtx-20251118/libfwevt/libfwevt_xml_tag.c +0 -4655
  1640. libevtx-20251118/libfwevt/libfwevt_xml_tag.h +0 -305
  1641. libevtx-20251118/libfwevt/libfwevt_xml_template_value.c +0 -412
  1642. libevtx-20251118/libfwevt/libfwevt_xml_template_value.h +0 -109
  1643. libevtx-20251118/libfwevt/libfwevt_xml_token.c +0 -236
  1644. libevtx-20251118/libfwevt/libfwevt_xml_token.h +0 -67
  1645. libevtx-20251118/libfwevt/libfwevt_xml_value.c +0 -3611
  1646. libevtx-20251118/libfwevt/libfwevt_xml_value.h +0 -266
  1647. libevtx-20251118/libfwnt/Makefile.in +0 -1004
  1648. libevtx-20251118/libfwnt/libfwnt_access_control_entry.c +0 -764
  1649. libevtx-20251118/libfwnt/libfwnt_access_control_entry.h +0 -116
  1650. libevtx-20251118/libfwnt/libfwnt_access_control_list.c +0 -518
  1651. libevtx-20251118/libfwnt/libfwnt_access_control_list.h +0 -93
  1652. libevtx-20251118/libfwnt/libfwnt_bit_stream.c +0 -308
  1653. libevtx-20251118/libfwnt/libfwnt_bit_stream.h +0 -85
  1654. libevtx-20251118/libfwnt/libfwnt_debug.c +0 -355
  1655. libevtx-20251118/libfwnt/libfwnt_debug.h +0 -53
  1656. libevtx-20251118/libfwnt/libfwnt_definitions.h +0 -112
  1657. libevtx-20251118/libfwnt/libfwnt_error.c +0 -111
  1658. libevtx-20251118/libfwnt/libfwnt_error.h +0 -74
  1659. libevtx-20251118/libfwnt/libfwnt_extern.h +0 -46
  1660. libevtx-20251118/libfwnt/libfwnt_huffman_tree.c +0 -589
  1661. libevtx-20251118/libfwnt/libfwnt_huffman_tree.h +0 -79
  1662. libevtx-20251118/libfwnt/libfwnt_libcdata.h +0 -54
  1663. libevtx-20251118/libfwnt/libfwnt_libcerror.h +0 -50
  1664. libevtx-20251118/libfwnt/libfwnt_libcnotify.h +0 -50
  1665. libevtx-20251118/libfwnt/libfwnt_locale_identifier.c +0 -470
  1666. libevtx-20251118/libfwnt/libfwnt_locale_identifier.h +0 -60
  1667. libevtx-20251118/libfwnt/libfwnt_lznt1.c +0 -560
  1668. libevtx-20251118/libfwnt/libfwnt_lznt1.h +0 -57
  1669. libevtx-20251118/libfwnt/libfwnt_lzx.c +0 -1465
  1670. libevtx-20251118/libfwnt/libfwnt_lzx.h +0 -95
  1671. libevtx-20251118/libfwnt/libfwnt_lzxpress.c +0 -1041
  1672. libevtx-20251118/libfwnt/libfwnt_lzxpress.h +0 -86
  1673. libevtx-20251118/libfwnt/libfwnt_notify.c +0 -120
  1674. libevtx-20251118/libfwnt/libfwnt_notify.h +0 -63
  1675. libevtx-20251118/libfwnt/libfwnt_security_descriptor.c +0 -1028
  1676. libevtx-20251118/libfwnt/libfwnt_security_descriptor.h +0 -116
  1677. libevtx-20251118/libfwnt/libfwnt_security_identifier.c +0 -1176
  1678. libevtx-20251118/libfwnt/libfwnt_security_identifier.h +0 -166
  1679. libevtx-20251118/libfwnt/libfwnt_support.c +0 -41
  1680. libevtx-20251118/libfwnt/libfwnt_support.h +0 -47
  1681. libevtx-20251118/libfwnt/libfwnt_types.h +0 -53
  1682. libevtx-20251118/libfwnt/libfwnt_unused.h +0 -44
  1683. libevtx-20251118/libregf/Makefile.in +0 -1116
  1684. libevtx-20251118/libregf/libregf_checksum.c +0 -295
  1685. libevtx-20251118/libregf/libregf_checksum.h +0 -46
  1686. libevtx-20251118/libregf/libregf_codepage.h +0 -90
  1687. libevtx-20251118/libregf/libregf_data_block_key.c +0 -251
  1688. libevtx-20251118/libregf/libregf_data_block_key.h +0 -66
  1689. libevtx-20251118/libregf/libregf_data_block_stream.c +0 -110
  1690. libevtx-20251118/libregf/libregf_data_block_stream.h +0 -59
  1691. libevtx-20251118/libregf/libregf_data_type.c +0 -85
  1692. libevtx-20251118/libregf/libregf_data_type.h +0 -64
  1693. libevtx-20251118/libregf/libregf_debug.c +0 -596
  1694. libevtx-20251118/libregf/libregf_debug.h +0 -85
  1695. libevtx-20251118/libregf/libregf_definitions.h +0 -163
  1696. libevtx-20251118/libregf/libregf_dirty_vector.c +0 -385
  1697. libevtx-20251118/libregf/libregf_dirty_vector.h +0 -71
  1698. libevtx-20251118/libregf/libregf_error.c +0 -111
  1699. libevtx-20251118/libregf/libregf_error.h +0 -74
  1700. libevtx-20251118/libregf/libregf_extern.h +0 -46
  1701. libevtx-20251118/libregf/libregf_file.c +0 -2122
  1702. libevtx-20251118/libregf/libregf_file.h +0 -204
  1703. libevtx-20251118/libregf/libregf_file_header.c +0 -453
  1704. libevtx-20251118/libregf/libregf_file_header.h +0 -84
  1705. libevtx-20251118/libregf/libregf_hive_bin.c +0 -733
  1706. libevtx-20251118/libregf/libregf_hive_bin.h +0 -105
  1707. libevtx-20251118/libregf/libregf_hive_bin_cell.c +0 -135
  1708. libevtx-20251118/libregf/libregf_hive_bin_cell.h +0 -68
  1709. libevtx-20251118/libregf/libregf_hive_bin_header.c +0 -377
  1710. libevtx-20251118/libregf/libregf_hive_bin_header.h +0 -73
  1711. libevtx-20251118/libregf/libregf_hive_bins_list.c +0 -766
  1712. libevtx-20251118/libregf/libregf_hive_bins_list.h +0 -116
  1713. libevtx-20251118/libregf/libregf_io_handle.c +0 -178
  1714. libevtx-20251118/libregf/libregf_io_handle.h +0 -82
  1715. libevtx-20251118/libregf/libregf_key.c +0 -3660
  1716. libevtx-20251118/libregf/libregf_key.h +0 -320
  1717. libevtx-20251118/libregf/libregf_key_descriptor.c +0 -131
  1718. libevtx-20251118/libregf/libregf_key_descriptor.h +0 -60
  1719. libevtx-20251118/libregf/libregf_key_item.c +0 -2730
  1720. libevtx-20251118/libregf/libregf_key_item.h +0 -279
  1721. libevtx-20251118/libregf/libregf_key_tree.c +0 -515
  1722. libevtx-20251118/libregf/libregf_key_tree.h +0 -63
  1723. libevtx-20251118/libregf/libregf_libbfio.h +0 -58
  1724. libevtx-20251118/libregf/libregf_libcdata.h +0 -54
  1725. libevtx-20251118/libregf/libregf_libcerror.h +0 -50
  1726. libevtx-20251118/libregf/libregf_libclocale.h +0 -50
  1727. libevtx-20251118/libregf/libregf_libcnotify.h +0 -50
  1728. libevtx-20251118/libregf/libregf_libcthreads.h +0 -64
  1729. libevtx-20251118/libregf/libregf_libfcache.h +0 -50
  1730. libevtx-20251118/libregf/libregf_libfdata.h +0 -54
  1731. libevtx-20251118/libregf/libregf_libfdatetime.h +0 -56
  1732. libevtx-20251118/libregf/libregf_libfwnt.h +0 -58
  1733. libevtx-20251118/libregf/libregf_libuna.h +0 -60
  1734. libevtx-20251118/libregf/libregf_multi_string.c +0 -897
  1735. libevtx-20251118/libregf/libregf_multi_string.h +0 -128
  1736. libevtx-20251118/libregf/libregf_named_key.c +0 -1355
  1737. libevtx-20251118/libregf/libregf_named_key.h +0 -172
  1738. libevtx-20251118/libregf/libregf_notify.c +0 -120
  1739. libevtx-20251118/libregf/libregf_notify.h +0 -63
  1740. libevtx-20251118/libregf/libregf_security_key.c +0 -447
  1741. libevtx-20251118/libregf/libregf_security_key.h +0 -68
  1742. libevtx-20251118/libregf/libregf_sub_key_list.c +0 -441
  1743. libevtx-20251118/libregf/libregf_sub_key_list.h +0 -69
  1744. libevtx-20251118/libregf/libregf_support.c +0 -429
  1745. libevtx-20251118/libregf/libregf_support.h +0 -82
  1746. libevtx-20251118/libregf/libregf_types.h +0 -53
  1747. libevtx-20251118/libregf/libregf_unused.h +0 -44
  1748. libevtx-20251118/libregf/libregf_value.c +0 -1836
  1749. libevtx-20251118/libregf/libregf_value.h +0 -211
  1750. libevtx-20251118/libregf/libregf_value_item.c +0 -3004
  1751. libevtx-20251118/libregf/libregf_value_item.h +0 -254
  1752. libevtx-20251118/libregf/libregf_value_key.c +0 -1512
  1753. libevtx-20251118/libregf/libregf_value_key.h +0 -160
  1754. libevtx-20251118/libregf/regf_cell_values.h +0 -263
  1755. libevtx-20251118/libregf/regf_file_header.h +0 -114
  1756. libevtx-20251118/libregf/regf_hive_bin.h +0 -81
  1757. libevtx-20251118/libuna/Makefile.in +0 -1346
  1758. libevtx-20251118/libuna/libuna_base16_stream.c +0 -1511
  1759. libevtx-20251118/libuna/libuna_base16_stream.h +0 -93
  1760. libevtx-20251118/libuna/libuna_base32_stream.c +0 -3035
  1761. libevtx-20251118/libuna/libuna_base32_stream.h +0 -131
  1762. libevtx-20251118/libuna/libuna_base64_stream.c +0 -2832
  1763. libevtx-20251118/libuna/libuna_base64_stream.h +0 -131
  1764. libevtx-20251118/libuna/libuna_byte_stream.c +0 -633
  1765. libevtx-20251118/libuna/libuna_byte_stream.h +0 -104
  1766. libevtx-20251118/libuna/libuna_codepage_iso_8859_10.c +0 -73
  1767. libevtx-20251118/libuna/libuna_codepage_iso_8859_10.h +0 -48
  1768. libevtx-20251118/libuna/libuna_codepage_iso_8859_13.c +0 -81
  1769. libevtx-20251118/libuna/libuna_codepage_iso_8859_13.h +0 -48
  1770. libevtx-20251118/libuna/libuna_codepage_iso_8859_14.c +0 -66
  1771. libevtx-20251118/libuna/libuna_codepage_iso_8859_14.h +0 -51
  1772. libevtx-20251118/libuna/libuna_codepage_iso_8859_15.c +0 -46
  1773. libevtx-20251118/libuna/libuna_codepage_iso_8859_15.h +0 -45
  1774. libevtx-20251118/libuna/libuna_codepage_iso_8859_16.c +0 -78
  1775. libevtx-20251118/libuna/libuna_codepage_iso_8859_16.h +0 -57
  1776. libevtx-20251118/libuna/libuna_codepage_iso_8859_2.c +0 -82
  1777. libevtx-20251118/libuna/libuna_codepage_iso_8859_2.h +0 -51
  1778. libevtx-20251118/libuna/libuna_codepage_iso_8859_3.c +0 -79
  1779. libevtx-20251118/libuna/libuna_codepage_iso_8859_3.h +0 -57
  1780. libevtx-20251118/libuna/libuna_codepage_iso_8859_4.c +0 -80
  1781. libevtx-20251118/libuna/libuna_codepage_iso_8859_4.h +0 -48
  1782. libevtx-20251118/libuna/libuna_codepage_iso_8859_5.c +0 -62
  1783. libevtx-20251118/libuna/libuna_codepage_iso_8859_5.h +0 -45
  1784. libevtx-20251118/libuna/libuna_codepage_iso_8859_6.c +0 -58
  1785. libevtx-20251118/libuna/libuna_codepage_iso_8859_6.h +0 -45
  1786. libevtx-20251118/libuna/libuna_codepage_iso_8859_7.c +0 -66
  1787. libevtx-20251118/libuna/libuna_codepage_iso_8859_7.h +0 -48
  1788. libevtx-20251118/libuna/libuna_codepage_iso_8859_8.c +0 -61
  1789. libevtx-20251118/libuna/libuna_codepage_iso_8859_8.h +0 -48
  1790. libevtx-20251118/libuna/libuna_codepage_iso_8859_9.c +0 -50
  1791. libevtx-20251118/libuna/libuna_codepage_iso_8859_9.h +0 -45
  1792. libevtx-20251118/libuna/libuna_codepage_koi8_r.c +0 -392
  1793. libevtx-20251118/libuna/libuna_codepage_koi8_r.h +0 -54
  1794. libevtx-20251118/libuna/libuna_codepage_koi8_u.c +0 -424
  1795. libevtx-20251118/libuna/libuna_codepage_koi8_u.h +0 -54
  1796. libevtx-20251118/libuna/libuna_codepage_mac_arabic.c +0 -352
  1797. libevtx-20251118/libuna/libuna_codepage_mac_arabic.h +0 -54
  1798. libevtx-20251118/libuna/libuna_codepage_mac_celtic.c +0 -395
  1799. libevtx-20251118/libuna/libuna_codepage_mac_celtic.h +0 -54
  1800. libevtx-20251118/libuna/libuna_codepage_mac_centraleurroman.c +0 -319
  1801. libevtx-20251118/libuna/libuna_codepage_mac_centraleurroman.h +0 -54
  1802. libevtx-20251118/libuna/libuna_codepage_mac_croatian.c +0 -378
  1803. libevtx-20251118/libuna/libuna_codepage_mac_croatian.h +0 -54
  1804. libevtx-20251118/libuna/libuna_codepage_mac_cyrillic.c +0 -325
  1805. libevtx-20251118/libuna/libuna_codepage_mac_cyrillic.h +0 -54
  1806. libevtx-20251118/libuna/libuna_codepage_mac_dingbats.c +0 -347
  1807. libevtx-20251118/libuna/libuna_codepage_mac_dingbats.h +0 -54
  1808. libevtx-20251118/libuna/libuna_codepage_mac_farsi.c +0 -372
  1809. libevtx-20251118/libuna/libuna_codepage_mac_farsi.h +0 -54
  1810. libevtx-20251118/libuna/libuna_codepage_mac_gaelic.c +0 -437
  1811. libevtx-20251118/libuna/libuna_codepage_mac_gaelic.h +0 -54
  1812. libevtx-20251118/libuna/libuna_codepage_mac_greek.c +0 -305
  1813. libevtx-20251118/libuna/libuna_codepage_mac_greek.h +0 -54
  1814. libevtx-20251118/libuna/libuna_codepage_mac_icelandic.c +0 -381
  1815. libevtx-20251118/libuna/libuna_codepage_mac_icelandic.h +0 -54
  1816. libevtx-20251118/libuna/libuna_codepage_mac_inuit.c +0 -380
  1817. libevtx-20251118/libuna/libuna_codepage_mac_inuit.h +0 -54
  1818. libevtx-20251118/libuna/libuna_codepage_mac_roman.c +0 -387
  1819. libevtx-20251118/libuna/libuna_codepage_mac_roman.h +0 -54
  1820. libevtx-20251118/libuna/libuna_codepage_mac_romanian.c +0 -396
  1821. libevtx-20251118/libuna/libuna_codepage_mac_romanian.h +0 -54
  1822. libevtx-20251118/libuna/libuna_codepage_mac_russian.c +0 -317
  1823. libevtx-20251118/libuna/libuna_codepage_mac_russian.h +0 -54
  1824. libevtx-20251118/libuna/libuna_codepage_mac_symbol.c +0 -537
  1825. libevtx-20251118/libuna/libuna_codepage_mac_symbol.h +0 -59
  1826. libevtx-20251118/libuna/libuna_codepage_mac_thai.c +0 -330
  1827. libevtx-20251118/libuna/libuna_codepage_mac_thai.h +0 -59
  1828. libevtx-20251118/libuna/libuna_codepage_mac_turkish.c +0 -397
  1829. libevtx-20251118/libuna/libuna_codepage_mac_turkish.h +0 -54
  1830. libevtx-20251118/libuna/libuna_codepage_mac_ukrainian.c +0 -321
  1831. libevtx-20251118/libuna/libuna_codepage_mac_ukrainian.h +0 -54
  1832. libevtx-20251118/libuna/libuna_codepage_windows_1250.c +0 -313
  1833. libevtx-20251118/libuna/libuna_codepage_windows_1250.h +0 -54
  1834. libevtx-20251118/libuna/libuna_codepage_windows_1251.c +0 -301
  1835. libevtx-20251118/libuna/libuna_codepage_windows_1251.h +0 -54
  1836. libevtx-20251118/libuna/libuna_codepage_windows_1252.c +0 -287
  1837. libevtx-20251118/libuna/libuna_codepage_windows_1252.h +0 -54
  1838. libevtx-20251118/libuna/libuna_codepage_windows_1253.c +0 -291
  1839. libevtx-20251118/libuna/libuna_codepage_windows_1253.h +0 -54
  1840. libevtx-20251118/libuna/libuna_codepage_windows_1254.c +0 -348
  1841. libevtx-20251118/libuna/libuna_codepage_windows_1254.h +0 -54
  1842. libevtx-20251118/libuna/libuna_codepage_windows_1255.c +0 -328
  1843. libevtx-20251118/libuna/libuna_codepage_windows_1255.h +0 -54
  1844. libevtx-20251118/libuna/libuna_codepage_windows_1256.c +0 -372
  1845. libevtx-20251118/libuna/libuna_codepage_windows_1256.h +0 -54
  1846. libevtx-20251118/libuna/libuna_codepage_windows_1257.c +0 -303
  1847. libevtx-20251118/libuna/libuna_codepage_windows_1257.h +0 -54
  1848. libevtx-20251118/libuna/libuna_codepage_windows_1258.c +0 -349
  1849. libevtx-20251118/libuna/libuna_codepage_windows_1258.h +0 -54
  1850. libevtx-20251118/libuna/libuna_codepage_windows_874.c +0 -274
  1851. libevtx-20251118/libuna/libuna_codepage_windows_874.h +0 -54
  1852. libevtx-20251118/libuna/libuna_codepage_windows_932.c +0 -4913
  1853. libevtx-20251118/libuna/libuna_codepage_windows_932.h +0 -59
  1854. libevtx-20251118/libuna/libuna_codepage_windows_936.c +0 -7371
  1855. libevtx-20251118/libuna/libuna_codepage_windows_936.h +0 -59
  1856. libevtx-20251118/libuna/libuna_codepage_windows_949.c +0 -8168
  1857. libevtx-20251118/libuna/libuna_codepage_windows_949.h +0 -59
  1858. libevtx-20251118/libuna/libuna_codepage_windows_950.c +0 -6390
  1859. libevtx-20251118/libuna/libuna_codepage_windows_950.h +0 -59
  1860. libevtx-20251118/libuna/libuna_definitions.h +0 -436
  1861. libevtx-20251118/libuna/libuna_error.c +0 -111
  1862. libevtx-20251118/libuna/libuna_error.h +0 -74
  1863. libevtx-20251118/libuna/libuna_extern.h +0 -46
  1864. libevtx-20251118/libuna/libuna_libcerror.h +0 -50
  1865. libevtx-20251118/libuna/libuna_scsu.c +0 -64
  1866. libevtx-20251118/libuna/libuna_scsu.h +0 -45
  1867. libevtx-20251118/libuna/libuna_support.c +0 -39
  1868. libevtx-20251118/libuna/libuna_support.h +0 -49
  1869. libevtx-20251118/libuna/libuna_types.h +0 -53
  1870. libevtx-20251118/libuna/libuna_unicode_character.c +0 -5784
  1871. libevtx-20251118/libuna/libuna_unicode_character.h +0 -260
  1872. libevtx-20251118/libuna/libuna_unused.h +0 -44
  1873. libevtx-20251118/libuna/libuna_url_stream.c +0 -584
  1874. libevtx-20251118/libuna/libuna_url_stream.h +0 -71
  1875. libevtx-20251118/libuna/libuna_utf16_stream.c +0 -815
  1876. libevtx-20251118/libuna/libuna_utf16_stream.h +0 -109
  1877. libevtx-20251118/libuna/libuna_utf16_string.c +0 -3950
  1878. libevtx-20251118/libuna/libuna_utf16_string.h +0 -325
  1879. libevtx-20251118/libuna/libuna_utf32_stream.c +0 -819
  1880. libevtx-20251118/libuna/libuna_utf32_stream.h +0 -109
  1881. libevtx-20251118/libuna/libuna_utf32_string.c +0 -3808
  1882. libevtx-20251118/libuna/libuna_utf32_string.h +0 -321
  1883. libevtx-20251118/libuna/libuna_utf7_stream.c +0 -628
  1884. libevtx-20251118/libuna/libuna_utf7_stream.h +0 -98
  1885. libevtx-20251118/libuna/libuna_utf8_stream.c +0 -748
  1886. libevtx-20251118/libuna/libuna_utf8_stream.h +0 -105
  1887. libevtx-20251118/libuna/libuna_utf8_string.c +0 -4092
  1888. libevtx-20251118/libuna/libuna_utf8_string.h +0 -329
  1889. libevtx-20251118/libwrc/Makefile.in +0 -1113
  1890. libevtx-20251118/libwrc/libwrc_codepage.h +0 -90
  1891. libevtx-20251118/libwrc/libwrc_data_descriptor.c +0 -295
  1892. libevtx-20251118/libwrc/libwrc_data_descriptor.h +0 -73
  1893. libevtx-20251118/libwrc/libwrc_debug.c +0 -324
  1894. libevtx-20251118/libwrc/libwrc_debug.h +0 -59
  1895. libevtx-20251118/libwrc/libwrc_definitions.h +0 -144
  1896. libevtx-20251118/libwrc/libwrc_error.c +0 -111
  1897. libevtx-20251118/libwrc/libwrc_error.h +0 -74
  1898. libevtx-20251118/libwrc/libwrc_extern.h +0 -46
  1899. libevtx-20251118/libwrc/libwrc_io_handle.c +0 -173
  1900. libevtx-20251118/libwrc/libwrc_io_handle.h +0 -74
  1901. libevtx-20251118/libwrc/libwrc_language_entry.c +0 -307
  1902. libevtx-20251118/libwrc/libwrc_language_entry.h +0 -88
  1903. libevtx-20251118/libwrc/libwrc_language_table.c +0 -459
  1904. libevtx-20251118/libwrc/libwrc_language_table.h +0 -87
  1905. libevtx-20251118/libwrc/libwrc_libbfio.h +0 -58
  1906. libevtx-20251118/libwrc/libwrc_libcdata.h +0 -54
  1907. libevtx-20251118/libwrc/libwrc_libcerror.h +0 -50
  1908. libevtx-20251118/libwrc/libwrc_libclocale.h +0 -50
  1909. libevtx-20251118/libwrc/libwrc_libcnotify.h +0 -50
  1910. libevtx-20251118/libwrc/libwrc_libfcache.h +0 -50
  1911. libevtx-20251118/libwrc/libwrc_libfdata.h +0 -54
  1912. libevtx-20251118/libwrc/libwrc_libfguid.h +0 -49
  1913. libevtx-20251118/libwrc/libwrc_libfvalue.h +0 -60
  1914. libevtx-20251118/libwrc/libwrc_libfwnt.h +0 -58
  1915. libevtx-20251118/libwrc/libwrc_libuna.h +0 -60
  1916. libevtx-20251118/libwrc/libwrc_manifest_resource.c +0 -430
  1917. libevtx-20251118/libwrc/libwrc_manifest_resource.h +0 -97
  1918. libevtx-20251118/libwrc/libwrc_manifest_values.c +0 -242
  1919. libevtx-20251118/libwrc/libwrc_manifest_values.h +0 -50
  1920. libevtx-20251118/libwrc/libwrc_message_table_resource.c +0 -995
  1921. libevtx-20251118/libwrc/libwrc_message_table_resource.h +0 -119
  1922. libevtx-20251118/libwrc/libwrc_message_table_values.c +0 -510
  1923. libevtx-20251118/libwrc/libwrc_message_table_values.h +0 -51
  1924. libevtx-20251118/libwrc/libwrc_mui_resource.c +0 -2478
  1925. libevtx-20251118/libwrc/libwrc_mui_resource.h +0 -209
  1926. libevtx-20251118/libwrc/libwrc_mui_values.c +0 -1384
  1927. libevtx-20251118/libwrc/libwrc_mui_values.h +0 -106
  1928. libevtx-20251118/libwrc/libwrc_notify.c +0 -120
  1929. libevtx-20251118/libwrc/libwrc_notify.h +0 -63
  1930. libevtx-20251118/libwrc/libwrc_resource.c +0 -1407
  1931. libevtx-20251118/libwrc/libwrc_resource.h +0 -158
  1932. libevtx-20251118/libwrc/libwrc_resource_item.c +0 -892
  1933. libevtx-20251118/libwrc/libwrc_resource_item.h +0 -161
  1934. libevtx-20251118/libwrc/libwrc_resource_node_entry.c +0 -962
  1935. libevtx-20251118/libwrc/libwrc_resource_node_entry.h +0 -140
  1936. libevtx-20251118/libwrc/libwrc_resource_node_header.c +0 -347
  1937. libevtx-20251118/libwrc/libwrc_resource_node_header.h +0 -77
  1938. libevtx-20251118/libwrc/libwrc_resource_node_tree.c +0 -559
  1939. libevtx-20251118/libwrc/libwrc_resource_node_tree.h +0 -50
  1940. libevtx-20251118/libwrc/libwrc_stream.c +0 -1841
  1941. libevtx-20251118/libwrc/libwrc_stream.h +0 -190
  1942. libevtx-20251118/libwrc/libwrc_string_table_resource.c +0 -809
  1943. libevtx-20251118/libwrc/libwrc_string_table_resource.h +0 -119
  1944. libevtx-20251118/libwrc/libwrc_string_values.c +0 -329
  1945. libevtx-20251118/libwrc/libwrc_string_values.h +0 -51
  1946. libevtx-20251118/libwrc/libwrc_support.c +0 -102
  1947. libevtx-20251118/libwrc/libwrc_support.h +0 -62
  1948. libevtx-20251118/libwrc/libwrc_table_entry.c +0 -463
  1949. libevtx-20251118/libwrc/libwrc_table_entry.h +0 -97
  1950. libevtx-20251118/libwrc/libwrc_types.h +0 -61
  1951. libevtx-20251118/libwrc/libwrc_unused.h +0 -44
  1952. libevtx-20251118/libwrc/libwrc_version_information_resource.c +0 -1927
  1953. libevtx-20251118/libwrc/libwrc_version_information_resource.h +0 -118
  1954. libevtx-20251118/libwrc/libwrc_version_values.c +0 -1967
  1955. libevtx-20251118/libwrc/libwrc_version_values.h +0 -116
  1956. libevtx-20251118/libwrc/wrc_data_descriptor.h +0 -52
  1957. libevtx-20251118/libwrc/wrc_message_table_resource.h +0 -72
  1958. libevtx-20251118/libwrc/wrc_mui_resource.h +0 -93
  1959. libevtx-20251118/libwrc/wrc_resource_node.h +0 -88
  1960. libevtx-20251118/libwrc/wrc_version_information_resource.h +0 -57
  1961. libevtx-20251118/ltmain.sh +0 -11517
  1962. libevtx-20251118/m4/common.m4 +0 -634
  1963. libevtx-20251118/m4/libcdirectory.m4 +0 -212
  1964. libevtx-20251118/m4/libcfile.m4 +0 -317
  1965. libevtx-20251118/m4/libclocale.m4 +0 -242
  1966. libevtx-20251118/m4/libcpath.m4 +0 -274
  1967. libevtx-20251118/m4/libtool.m4 +0 -8491
  1968. libevtx-20251118/m4/ltoptions.m4 +0 -467
  1969. libevtx-20251118/m4/ltsugar.m4 +0 -124
  1970. libevtx-20251118/m4/ltversion.m4 +0 -24
  1971. libevtx-20251118/m4/lt~obsolete.m4 +0 -99
  1972. libevtx-20251118/m4/pthread.m4 +0 -108
  1973. libevtx-20251118/m4/python.m4 +0 -208
  1974. libevtx-20251118/m4/tests.m4 +0 -33
  1975. libevtx-20251118/m4/types.m4 +0 -133
  1976. libevtx-20251118/manuals/Makefile.am +0 -14
  1977. libevtx-20251118/manuals/Makefile.in +0 -873
  1978. libevtx-20251118/manuals/evtxexport.1 +0 -89
  1979. libevtx-20251118/manuals/evtxinfo.1 +0 -56
  1980. libevtx-20251118/manuals/libevtx.3 +0 -215
  1981. libevtx-20251118/missing +0 -236
  1982. libevtx-20251118/msvscpp/Makefile.in +0 -789
  1983. libevtx-20251118/ossfuzz/Makefile.in +0 -1022
  1984. libevtx-20251118/ossfuzz/file_fuzzer.cc +0 -99
  1985. libevtx-20251118/ossfuzz/ossfuzz_libbfio.h +0 -58
  1986. libevtx-20251118/ossfuzz/ossfuzz_libevtx.h +0 -30
  1987. libevtx-20251118/ossfuzz/record_fuzzer.cc +0 -121
  1988. libevtx-20251118/po/Makevars +0 -45
  1989. libevtx-20251118/pyevtx/Makefile.am +0 -56
  1990. libevtx-20251118/pyevtx/Makefile.in +0 -1145
  1991. libevtx-20251118/pyevtx/pyevtx.c +0 -742
  1992. libevtx-20251118/pyevtx/pyevtx.h +0 -71
  1993. libevtx-20251118/pyevtx/pyevtx_codepage.c +0 -138
  1994. libevtx-20251118/pyevtx/pyevtx_codepage.h +0 -42
  1995. libevtx-20251118/pyevtx/pyevtx_datetime.c +0 -691
  1996. libevtx-20251118/pyevtx/pyevtx_datetime.h +0 -65
  1997. libevtx-20251118/pyevtx/pyevtx_error.c +0 -422
  1998. libevtx-20251118/pyevtx/pyevtx_error.h +0 -60
  1999. libevtx-20251118/pyevtx/pyevtx_event_levels.c +0 -334
  2000. libevtx-20251118/pyevtx/pyevtx_event_levels.h +0 -63
  2001. libevtx-20251118/pyevtx/pyevtx_file.c +0 -1774
  2002. libevtx-20251118/pyevtx/pyevtx_file.h +0 -145
  2003. libevtx-20251118/pyevtx/pyevtx_file_flags.c +0 -292
  2004. libevtx-20251118/pyevtx/pyevtx_file_flags.h +0 -63
  2005. libevtx-20251118/pyevtx/pyevtx_file_object_io_handle.c +0 -1524
  2006. libevtx-20251118/pyevtx/pyevtx_file_object_io_handle.h +0 -141
  2007. libevtx-20251118/pyevtx/pyevtx_integer.c +0 -399
  2008. libevtx-20251118/pyevtx/pyevtx_integer.h +0 -56
  2009. libevtx-20251118/pyevtx/pyevtx_libbfio.h +0 -54
  2010. libevtx-20251118/pyevtx/pyevtx_libcerror.h +0 -50
  2011. libevtx-20251118/pyevtx/pyevtx_libclocale.h +0 -50
  2012. libevtx-20251118/pyevtx/pyevtx_libevtx.h +0 -30
  2013. libevtx-20251118/pyevtx/pyevtx_python.h +0 -83
  2014. libevtx-20251118/pyevtx/pyevtx_record.c +0 -2237
  2015. libevtx-20251118/pyevtx/pyevtx_record.h +0 -155
  2016. libevtx-20251118/pyevtx/pyevtx_records.c +0 -452
  2017. libevtx-20251118/pyevtx/pyevtx_records.h +0 -95
  2018. libevtx-20251118/pyevtx/pyevtx_strings.c +0 -451
  2019. libevtx-20251118/pyevtx/pyevtx_strings.h +0 -95
  2020. libevtx-20251118/pyevtx/pyevtx_unused.h +0 -44
  2021. libevtx-20251118/pyproject.toml +0 -4
  2022. libevtx-20251118/setup.cfg +0 -16
  2023. libevtx-20251118/setup.cfg.in +0 -16
  2024. libevtx-20251118/setup.py +0 -293
  2025. libevtx-20251118/test-driver +0 -160
  2026. libevtx-20251118/tests/Makefile.am +0 -395
  2027. libevtx-20251118/tests/Makefile.in +0 -2033
  2028. libevtx-20251118/tests/evtx_test_chunk.c +0 -567
  2029. libevtx-20251118/tests/evtx_test_chunks_table.c +0 -112
  2030. libevtx-20251118/tests/evtx_test_error.c +0 -150
  2031. libevtx-20251118/tests/evtx_test_file.c +0 -2239
  2032. libevtx-20251118/tests/evtx_test_functions.c +0 -562
  2033. libevtx-20251118/tests/evtx_test_functions.h +0 -66
  2034. libevtx-20251118/tests/evtx_test_getopt.c +0 -190
  2035. libevtx-20251118/tests/evtx_test_getopt.h +0 -68
  2036. libevtx-20251118/tests/evtx_test_io_handle.c +0 -443
  2037. libevtx-20251118/tests/evtx_test_libbfio.h +0 -58
  2038. libevtx-20251118/tests/evtx_test_libcerror.h +0 -50
  2039. libevtx-20251118/tests/evtx_test_libclocale.h +0 -50
  2040. libevtx-20251118/tests/evtx_test_libcnotify.h +0 -50
  2041. libevtx-20251118/tests/evtx_test_libevtx.h +0 -30
  2042. libevtx-20251118/tests/evtx_test_libuna.h +0 -60
  2043. libevtx-20251118/tests/evtx_test_macros.h +0 -257
  2044. libevtx-20251118/tests/evtx_test_memory.c +0 -177
  2045. libevtx-20251118/tests/evtx_test_memory.h +0 -52
  2046. libevtx-20251118/tests/evtx_test_notify.c +0 -229
  2047. libevtx-20251118/tests/evtx_test_record.c +0 -178
  2048. libevtx-20251118/tests/evtx_test_record_values.c +0 -3802
  2049. libevtx-20251118/tests/evtx_test_support.c +0 -796
  2050. libevtx-20251118/tests/evtx_test_template_definition.c +0 -305
  2051. libevtx-20251118/tests/evtx_test_tools_info_handle.c +0 -299
  2052. libevtx-20251118/tests/evtx_test_tools_message_handle.c +0 -299
  2053. libevtx-20251118/tests/evtx_test_tools_message_string.c +0 -304
  2054. libevtx-20251118/tests/evtx_test_tools_output.c +0 -105
  2055. libevtx-20251118/tests/evtx_test_tools_path_handle.c +0 -299
  2056. libevtx-20251118/tests/evtx_test_tools_registry_file.c +0 -299
  2057. libevtx-20251118/tests/evtx_test_tools_resource_file.c +0 -304
  2058. libevtx-20251118/tests/evtx_test_tools_signal.c +0 -213
  2059. libevtx-20251118/tests/evtx_test_unused.h +0 -50
  2060. libevtx-20251118/tests/pyevtx_test_file.py +0 -215
  2061. libevtx-20251118/tests/pyevtx_test_support.py +0 -111
  2062. libevtx-20251118/tests/test_evtxexport.sh +0 -147
  2063. libevtx-20251118/tests/test_evtxinfo.sh +0 -146
  2064. libevtx-20251118/tests/test_library.sh +0 -193
  2065. libevtx-20251118/tests/test_manpage.sh +0 -98
  2066. libevtx-20251118/tests/test_python_module.sh +0 -195
  2067. libevtx-20251118/tests/test_runner.sh +0 -1148
  2068. libevtx-20251118/tests/test_tools.sh +0 -193
  2069. {libevtx-20251118 → libevtx_python-20260705}/ABOUT-NLS +0 -0
  2070. {libevtx-20251118 → libevtx_python-20260705}/COPYING +0 -0
  2071. {libevtx-20251118 → libevtx_python-20260705}/COPYING.LESSER +0 -0
  2072. {libevtx-20251118 → libevtx_python-20260705}/ChangeLog +0 -0
  2073. {libevtx-20251118 → libevtx_python-20260705}/NEWS +0 -0
  2074. {libevtx-20251118 → libevtx_python-20260705}/common/Makefile.am +0 -0
  2075. {libevtx-20251118 → libevtx_python-20260705}/config.rpath +0 -0
  2076. {libevtx-20251118 → libevtx_python-20260705}/dpkg/changelog.in +0 -0
  2077. {libevtx-20251118 → libevtx_python-20260705}/dpkg/libevtx-dev.install +0 -0
  2078. {libevtx-20251118 → libevtx_python-20260705}/dpkg/libevtx-python3.install +0 -0
  2079. {libevtx-20251118 → libevtx_python-20260705}/dpkg/libevtx-tools.install +0 -0
  2080. {libevtx-20251118 → libevtx_python-20260705}/dpkg/libevtx.install +0 -0
  2081. {libevtx-20251118 → libevtx_python-20260705}/dpkg/source/format +0 -0
  2082. {libevtx-20251118 → libevtx_python-20260705}/include/Makefile.am +0 -0
  2083. {libevtx-20251118 → libevtx_python-20260705}/libbfio/Makefile.am +0 -0
  2084. {libevtx-20251118 → libevtx_python-20260705}/libcdata/Makefile.am +0 -0
  2085. {libevtx-20251118 → libevtx_python-20260705}/libcdirectory/Makefile.am +0 -0
  2086. {libevtx-20251118 → libevtx_python-20260705}/libcerror/Makefile.am +0 -0
  2087. {libevtx-20251118 → libevtx_python-20260705}/libcfile/Makefile.am +0 -0
  2088. {libevtx-20251118 → libevtx_python-20260705}/libclocale/Makefile.am +0 -0
  2089. {libevtx-20251118 → libevtx_python-20260705}/libcnotify/Makefile.am +0 -0
  2090. {libevtx-20251118 → libevtx_python-20260705}/libcpath/Makefile.am +0 -0
  2091. {libevtx-20251118 → libevtx_python-20260705}/libcsplit/Makefile.am +0 -0
  2092. {libevtx-20251118 → libevtx_python-20260705}/libcthreads/Makefile.am +0 -0
  2093. {libevtx-20251118 → libevtx_python-20260705}/libevtx/Makefile.am +0 -0
  2094. {libevtx-20251118 → libevtx_python-20260705}/libevtx.pc.in +0 -0
  2095. {libevtx-20251118 → libevtx_python-20260705}/libevtx.spec.in +0 -0
  2096. {libevtx-20251118 → libevtx_python-20260705}/libexe/Makefile.am +0 -0
  2097. {libevtx-20251118 → libevtx_python-20260705}/libfcache/Makefile.am +0 -0
  2098. {libevtx-20251118 → libevtx_python-20260705}/libfdata/Makefile.am +0 -0
  2099. {libevtx-20251118 → libevtx_python-20260705}/libfdatetime/Makefile.am +0 -0
  2100. {libevtx-20251118 → libevtx_python-20260705}/libfguid/Makefile.am +0 -0
  2101. {libevtx-20251118 → libevtx_python-20260705}/libfvalue/Makefile.am +0 -0
  2102. {libevtx-20251118 → libevtx_python-20260705}/libfwevt/Makefile.am +0 -0
  2103. {libevtx-20251118 → libevtx_python-20260705}/libfwnt/Makefile.am +0 -0
  2104. {libevtx-20251118 → libevtx_python-20260705}/libregf/Makefile.am +0 -0
  2105. {libevtx-20251118 → libevtx_python-20260705}/libuna/Makefile.am +0 -0
  2106. {libevtx-20251118 → libevtx_python-20260705}/libwrc/Makefile.am +0 -0
  2107. {libevtx-20251118 → libevtx_python-20260705}/m4/gettext.m4 +0 -0
  2108. {libevtx-20251118 → libevtx_python-20260705}/m4/host-cpu-c-abi.m4 +0 -0
  2109. {libevtx-20251118 → libevtx_python-20260705}/m4/iconv.m4 +0 -0
  2110. {libevtx-20251118 → libevtx_python-20260705}/m4/intlmacosx.m4 +0 -0
  2111. {libevtx-20251118 → libevtx_python-20260705}/m4/lib-ld.m4 +0 -0
  2112. {libevtx-20251118 → libevtx_python-20260705}/m4/lib-link.m4 +0 -0
  2113. {libevtx-20251118 → libevtx_python-20260705}/m4/lib-prefix.m4 +0 -0
  2114. {libevtx-20251118 → libevtx_python-20260705}/m4/libbfio.m4 +0 -0
  2115. {libevtx-20251118 → libevtx_python-20260705}/m4/libcdata.m4 +0 -0
  2116. {libevtx-20251118 → libevtx_python-20260705}/m4/libcerror.m4 +0 -0
  2117. {libevtx-20251118 → libevtx_python-20260705}/m4/libcnotify.m4 +0 -0
  2118. {libevtx-20251118 → libevtx_python-20260705}/m4/libcsplit.m4 +0 -0
  2119. {libevtx-20251118 → libevtx_python-20260705}/m4/libcthreads.m4 +0 -0
  2120. {libevtx-20251118 → libevtx_python-20260705}/m4/libexe.m4 +0 -0
  2121. {libevtx-20251118 → libevtx_python-20260705}/m4/libfcache.m4 +0 -0
  2122. {libevtx-20251118 → libevtx_python-20260705}/m4/libfdata.m4 +0 -0
  2123. {libevtx-20251118 → libevtx_python-20260705}/m4/libfdatetime.m4 +0 -0
  2124. {libevtx-20251118 → libevtx_python-20260705}/m4/libfguid.m4 +0 -0
  2125. {libevtx-20251118 → libevtx_python-20260705}/m4/libfvalue.m4 +0 -0
  2126. {libevtx-20251118 → libevtx_python-20260705}/m4/libfwevt.m4 +0 -0
  2127. {libevtx-20251118 → libevtx_python-20260705}/m4/libfwnt.m4 +0 -0
  2128. {libevtx-20251118 → libevtx_python-20260705}/m4/libregf.m4 +0 -0
  2129. {libevtx-20251118 → libevtx_python-20260705}/m4/libuna.m4 +0 -0
  2130. {libevtx-20251118 → libevtx_python-20260705}/m4/libwrc.m4 +0 -0
  2131. {libevtx-20251118 → libevtx_python-20260705}/m4/nls.m4 +0 -0
  2132. {libevtx-20251118 → libevtx_python-20260705}/m4/po.m4 +0 -0
  2133. {libevtx-20251118 → libevtx_python-20260705}/m4/progtest.m4 +0 -0
  2134. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/Makefile.am +0 -0
  2135. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_chunk/evtx_test_chunk.vcproj +0 -0
  2136. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_chunks_table/evtx_test_chunks_table.vcproj +0 -0
  2137. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_error/evtx_test_error.vcproj +0 -0
  2138. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_file/evtx_test_file.vcproj +0 -0
  2139. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_io_handle/evtx_test_io_handle.vcproj +0 -0
  2140. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_notify/evtx_test_notify.vcproj +0 -0
  2141. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_record/evtx_test_record.vcproj +0 -0
  2142. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_record_values/evtx_test_record_values.vcproj +0 -0
  2143. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_support/evtx_test_support.vcproj +0 -0
  2144. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_template_definition/evtx_test_template_definition.vcproj +0 -0
  2145. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_tools_info_handle/evtx_test_tools_info_handle.vcproj +0 -0
  2146. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_tools_message_handle/evtx_test_tools_message_handle.vcproj +0 -0
  2147. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_tools_message_string/evtx_test_tools_message_string.vcproj +0 -0
  2148. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_tools_output/evtx_test_tools_output.vcproj +0 -0
  2149. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_tools_path_handle/evtx_test_tools_path_handle.vcproj +0 -0
  2150. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_tools_registry_file/evtx_test_tools_registry_file.vcproj +0 -0
  2151. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_tools_resource_file/evtx_test_tools_resource_file.vcproj +0 -0
  2152. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtx_test_tools_signal/evtx_test_tools_signal.vcproj +0 -0
  2153. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtxexport/evtxexport.vcproj +0 -0
  2154. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/evtxinfo/evtxinfo.vcproj +0 -0
  2155. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libbfio/libbfio.vcproj +0 -0
  2156. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libcdata/libcdata.vcproj +0 -0
  2157. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libcdirectory/libcdirectory.vcproj +0 -0
  2158. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libcerror/libcerror.vcproj +0 -0
  2159. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libcfile/libcfile.vcproj +0 -0
  2160. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libclocale/libclocale.vcproj +0 -0
  2161. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libcnotify/libcnotify.vcproj +0 -0
  2162. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libcpath/libcpath.vcproj +0 -0
  2163. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libcsplit/libcsplit.vcproj +0 -0
  2164. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libcthreads/libcthreads.vcproj +0 -0
  2165. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libevtx/libevtx.vcproj +0 -0
  2166. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libevtx.sln +0 -0
  2167. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libexe/libexe.vcproj +0 -0
  2168. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libfcache/libfcache.vcproj +0 -0
  2169. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libfdata/libfdata.vcproj +0 -0
  2170. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libfdatetime/libfdatetime.vcproj +0 -0
  2171. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libfguid/libfguid.vcproj +0 -0
  2172. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libfvalue/libfvalue.vcproj +0 -0
  2173. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libfwevt/libfwevt.vcproj +0 -0
  2174. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libfwnt/libfwnt.vcproj +0 -0
  2175. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libregf/libregf.vcproj +0 -0
  2176. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libuna/libuna.vcproj +0 -0
  2177. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/libwrc/libwrc.vcproj +0 -0
  2178. {libevtx-20251118 → libevtx_python-20260705}/msvscpp/pyevtx/pyevtx.vcproj +0 -0
  2179. {libevtx-20251118 → libevtx_python-20260705}/ossfuzz/Makefile.am +0 -0
  2180. {libevtx-20251118 → libevtx_python-20260705}/po/ChangeLog +0 -0
  2181. {libevtx-20251118 → libevtx_python-20260705}/po/Makefile.in.in +0 -0
  2182. {libevtx-20251118 → libevtx_python-20260705}/po/Makevars.in +0 -0
  2183. {libevtx-20251118 → libevtx_python-20260705}/po/POTFILES.in +0 -0
  2184. {libevtx-20251118 → libevtx_python-20260705}/po/Rules-quot +0 -0
  2185. {libevtx-20251118 → libevtx_python-20260705}/po/boldquot.sed +0 -0
  2186. {libevtx-20251118 → libevtx_python-20260705}/po/en@boldquot.header +0 -0
  2187. {libevtx-20251118 → libevtx_python-20260705}/po/en@quot.header +0 -0
  2188. {libevtx-20251118 → libevtx_python-20260705}/po/insert-header.sin +0 -0
  2189. {libevtx-20251118 → libevtx_python-20260705}/po/quot.sed +0 -0
  2190. {libevtx-20251118 → libevtx_python-20260705}/po/remove-potcdate.sin +0 -0
@@ -0,0 +1,4 @@
1
+ Acknowledgements: libevtx
2
+
3
+ Copyright (C) 2011-2026, Joachim Metz <joachim.metz@gmail.com>
4
+
@@ -0,0 +1,368 @@
1
+ Installation Instructions
2
+ *************************
3
+
4
+ Copyright (C) 1994-1996, 1999-2002, 2004-2017, 2020-2021 Free
5
+ Software Foundation, Inc.
6
+
7
+ Copying and distribution of this file, with or without modification,
8
+ are permitted in any medium without royalty provided the copyright
9
+ notice and this notice are preserved. This file is offered as-is,
10
+ without warranty of any kind.
11
+
12
+ Basic Installation
13
+ ==================
14
+
15
+ Briefly, the shell command './configure && make && make install'
16
+ should configure, build, and install this package. The following
17
+ more-detailed instructions are generic; see the 'README' file for
18
+ instructions specific to this package. Some packages provide this
19
+ 'INSTALL' file but do not implement all of the features documented
20
+ below. The lack of an optional feature in a given package is not
21
+ necessarily a bug. More recommendations for GNU packages can be found
22
+ in *note Makefile Conventions: (standards)Makefile Conventions.
23
+
24
+ The 'configure' shell script attempts to guess correct values for
25
+ various system-dependent variables used during compilation. It uses
26
+ those values to create a 'Makefile' in each directory of the package.
27
+ It may also create one or more '.h' files containing system-dependent
28
+ definitions. Finally, it creates a shell script 'config.status' that
29
+ you can run in the future to recreate the current configuration, and a
30
+ file 'config.log' containing compiler output (useful mainly for
31
+ debugging 'configure').
32
+
33
+ It can also use an optional file (typically called 'config.cache' and
34
+ enabled with '--cache-file=config.cache' or simply '-C') that saves the
35
+ results of its tests to speed up reconfiguring. Caching is disabled by
36
+ default to prevent problems with accidental use of stale cache files.
37
+
38
+ If you need to do unusual things to compile the package, please try
39
+ to figure out how 'configure' could check whether to do them, and mail
40
+ diffs or instructions to the address given in the 'README' so they can
41
+ be considered for the next release. If you are using the cache, and at
42
+ some point 'config.cache' contains results you don't want to keep, you
43
+ may remove or edit it.
44
+
45
+ The file 'configure.ac' (or 'configure.in') is used to create
46
+ 'configure' by a program called 'autoconf'. You need 'configure.ac' if
47
+ you want to change it or regenerate 'configure' using a newer version of
48
+ 'autoconf'.
49
+
50
+ The simplest way to compile this package is:
51
+
52
+ 1. 'cd' to the directory containing the package's source code and type
53
+ './configure' to configure the package for your system.
54
+
55
+ Running 'configure' might take a while. While running, it prints
56
+ some messages telling which features it is checking for.
57
+
58
+ 2. Type 'make' to compile the package.
59
+
60
+ 3. Optionally, type 'make check' to run any self-tests that come with
61
+ the package, generally using the just-built uninstalled binaries.
62
+
63
+ 4. Type 'make install' to install the programs and any data files and
64
+ documentation. When installing into a prefix owned by root, it is
65
+ recommended that the package be configured and built as a regular
66
+ user, and only the 'make install' phase executed with root
67
+ privileges.
68
+
69
+ 5. Optionally, type 'make installcheck' to repeat any self-tests, but
70
+ this time using the binaries in their final installed location.
71
+ This target does not install anything. Running this target as a
72
+ regular user, particularly if the prior 'make install' required
73
+ root privileges, verifies that the installation completed
74
+ correctly.
75
+
76
+ 6. You can remove the program binaries and object files from the
77
+ source code directory by typing 'make clean'. To also remove the
78
+ files that 'configure' created (so you can compile the package for
79
+ a different kind of computer), type 'make distclean'. There is
80
+ also a 'make maintainer-clean' target, but that is intended mainly
81
+ for the package's developers. If you use it, you may have to get
82
+ all sorts of other programs in order to regenerate files that came
83
+ with the distribution.
84
+
85
+ 7. Often, you can also type 'make uninstall' to remove the installed
86
+ files again. In practice, not all packages have tested that
87
+ uninstallation works correctly, even though it is required by the
88
+ GNU Coding Standards.
89
+
90
+ 8. Some packages, particularly those that use Automake, provide 'make
91
+ distcheck', which can by used by developers to test that all other
92
+ targets like 'make install' and 'make uninstall' work correctly.
93
+ This target is generally not run by end users.
94
+
95
+ Compilers and Options
96
+ =====================
97
+
98
+ Some systems require unusual options for compilation or linking that
99
+ the 'configure' script does not know about. Run './configure --help'
100
+ for details on some of the pertinent environment variables.
101
+
102
+ You can give 'configure' initial values for configuration parameters
103
+ by setting variables in the command line or in the environment. Here is
104
+ an example:
105
+
106
+ ./configure CC=c99 CFLAGS=-g LIBS=-lposix
107
+
108
+ *Note Defining Variables::, for more details.
109
+
110
+ Compiling For Multiple Architectures
111
+ ====================================
112
+
113
+ You can compile the package for more than one kind of computer at the
114
+ same time, by placing the object files for each architecture in their
115
+ own directory. To do this, you can use GNU 'make'. 'cd' to the
116
+ directory where you want the object files and executables to go and run
117
+ the 'configure' script. 'configure' automatically checks for the source
118
+ code in the directory that 'configure' is in and in '..'. This is known
119
+ as a "VPATH" build.
120
+
121
+ With a non-GNU 'make', it is safer to compile the package for one
122
+ architecture at a time in the source code directory. After you have
123
+ installed the package for one architecture, use 'make distclean' before
124
+ reconfiguring for another architecture.
125
+
126
+ On MacOS X 10.5 and later systems, you can create libraries and
127
+ executables that work on multiple system types--known as "fat" or
128
+ "universal" binaries--by specifying multiple '-arch' options to the
129
+ compiler but only a single '-arch' option to the preprocessor. Like
130
+ this:
131
+
132
+ ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
133
+ CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
134
+ CPP="gcc -E" CXXCPP="g++ -E"
135
+
136
+ This is not guaranteed to produce working output in all cases, you
137
+ may have to build one architecture at a time and combine the results
138
+ using the 'lipo' tool if you have problems.
139
+
140
+ Installation Names
141
+ ==================
142
+
143
+ By default, 'make install' installs the package's commands under
144
+ '/usr/local/bin', include files under '/usr/local/include', etc. You
145
+ can specify an installation prefix other than '/usr/local' by giving
146
+ 'configure' the option '--prefix=PREFIX', where PREFIX must be an
147
+ absolute file name.
148
+
149
+ You can specify separate installation prefixes for
150
+ architecture-specific files and architecture-independent files. If you
151
+ pass the option '--exec-prefix=PREFIX' to 'configure', the package uses
152
+ PREFIX as the prefix for installing programs and libraries.
153
+ Documentation and other data files still use the regular prefix.
154
+
155
+ In addition, if you use an unusual directory layout you can give
156
+ options like '--bindir=DIR' to specify different values for particular
157
+ kinds of files. Run 'configure --help' for a list of the directories
158
+ you can set and what kinds of files go in them. In general, the default
159
+ for these options is expressed in terms of '${prefix}', so that
160
+ specifying just '--prefix' will affect all of the other directory
161
+ specifications that were not explicitly provided.
162
+
163
+ The most portable way to affect installation locations is to pass the
164
+ correct locations to 'configure'; however, many packages provide one or
165
+ both of the following shortcuts of passing variable assignments to the
166
+ 'make install' command line to change installation locations without
167
+ having to reconfigure or recompile.
168
+
169
+ The first method involves providing an override variable for each
170
+ affected directory. For example, 'make install
171
+ prefix=/alternate/directory' will choose an alternate location for all
172
+ directory configuration variables that were expressed in terms of
173
+ '${prefix}'. Any directories that were specified during 'configure',
174
+ but not in terms of '${prefix}', must each be overridden at install time
175
+ for the entire installation to be relocated. The approach of makefile
176
+ variable overrides for each directory variable is required by the GNU
177
+ Coding Standards, and ideally causes no recompilation. However, some
178
+ platforms have known limitations with the semantics of shared libraries
179
+ that end up requiring recompilation when using this method, particularly
180
+ noticeable in packages that use GNU Libtool.
181
+
182
+ The second method involves providing the 'DESTDIR' variable. For
183
+ example, 'make install DESTDIR=/alternate/directory' will prepend
184
+ '/alternate/directory' before all installation names. The approach of
185
+ 'DESTDIR' overrides is not required by the GNU Coding Standards, and
186
+ does not work on platforms that have drive letters. On the other hand,
187
+ it does better at avoiding recompilation issues, and works well even
188
+ when some directory options were not specified in terms of '${prefix}'
189
+ at 'configure' time.
190
+
191
+ Optional Features
192
+ =================
193
+
194
+ If the package supports it, you can cause programs to be installed
195
+ with an extra prefix or suffix on their names by giving 'configure' the
196
+ option '--program-prefix=PREFIX' or '--program-suffix=SUFFIX'.
197
+
198
+ Some packages pay attention to '--enable-FEATURE' options to
199
+ 'configure', where FEATURE indicates an optional part of the package.
200
+ They may also pay attention to '--with-PACKAGE' options, where PACKAGE
201
+ is something like 'gnu-as' or 'x' (for the X Window System). The
202
+ 'README' should mention any '--enable-' and '--with-' options that the
203
+ package recognizes.
204
+
205
+ For packages that use the X Window System, 'configure' can usually
206
+ find the X include and library files automatically, but if it doesn't,
207
+ you can use the 'configure' options '--x-includes=DIR' and
208
+ '--x-libraries=DIR' to specify their locations.
209
+
210
+ Some packages offer the ability to configure how verbose the
211
+ execution of 'make' will be. For these packages, running './configure
212
+ --enable-silent-rules' sets the default to minimal output, which can be
213
+ overridden with 'make V=1'; while running './configure
214
+ --disable-silent-rules' sets the default to verbose, which can be
215
+ overridden with 'make V=0'.
216
+
217
+ Particular systems
218
+ ==================
219
+
220
+ On HP-UX, the default C compiler is not ANSI C compatible. If GNU CC
221
+ is not installed, it is recommended to use the following options in
222
+ order to use an ANSI C compiler:
223
+
224
+ ./configure CC="cc -Ae -D_XOPEN_SOURCE=500"
225
+
226
+ and if that doesn't work, install pre-built binaries of GCC for HP-UX.
227
+
228
+ HP-UX 'make' updates targets which have the same timestamps as their
229
+ prerequisites, which makes it generally unusable when shipped generated
230
+ files such as 'configure' are involved. Use GNU 'make' instead.
231
+
232
+ On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot
233
+ parse its '<wchar.h>' header file. The option '-nodtk' can be used as a
234
+ workaround. If GNU CC is not installed, it is therefore recommended to
235
+ try
236
+
237
+ ./configure CC="cc"
238
+
239
+ and if that doesn't work, try
240
+
241
+ ./configure CC="cc -nodtk"
242
+
243
+ On Solaris, don't put '/usr/ucb' early in your 'PATH'. This
244
+ directory contains several dysfunctional programs; working variants of
245
+ these programs are available in '/usr/bin'. So, if you need '/usr/ucb'
246
+ in your 'PATH', put it _after_ '/usr/bin'.
247
+
248
+ On Haiku, software installed for all users goes in '/boot/common',
249
+ not '/usr/local'. It is recommended to use the following options:
250
+
251
+ ./configure --prefix=/boot/common
252
+
253
+ Specifying the System Type
254
+ ==========================
255
+
256
+ There may be some features 'configure' cannot figure out
257
+ automatically, but needs to determine by the type of machine the package
258
+ will run on. Usually, assuming the package is built to be run on the
259
+ _same_ architectures, 'configure' can figure that out, but if it prints
260
+ a message saying it cannot guess the machine type, give it the
261
+ '--build=TYPE' option. TYPE can either be a short name for the system
262
+ type, such as 'sun4', or a canonical name which has the form:
263
+
264
+ CPU-COMPANY-SYSTEM
265
+
266
+ where SYSTEM can have one of these forms:
267
+
268
+ OS
269
+ KERNEL-OS
270
+
271
+ See the file 'config.sub' for the possible values of each field. If
272
+ 'config.sub' isn't included in this package, then this package doesn't
273
+ need to know the machine type.
274
+
275
+ If you are _building_ compiler tools for cross-compiling, you should
276
+ use the option '--target=TYPE' to select the type of system they will
277
+ produce code for.
278
+
279
+ If you want to _use_ a cross compiler, that generates code for a
280
+ platform different from the build platform, you should specify the
281
+ "host" platform (i.e., that on which the generated programs will
282
+ eventually be run) with '--host=TYPE'.
283
+
284
+ Sharing Defaults
285
+ ================
286
+
287
+ If you want to set default values for 'configure' scripts to share,
288
+ you can create a site shell script called 'config.site' that gives
289
+ default values for variables like 'CC', 'cache_file', and 'prefix'.
290
+ 'configure' looks for 'PREFIX/share/config.site' if it exists, then
291
+ 'PREFIX/etc/config.site' if it exists. Or, you can set the
292
+ 'CONFIG_SITE' environment variable to the location of the site script.
293
+ A warning: not all 'configure' scripts look for a site script.
294
+
295
+ Defining Variables
296
+ ==================
297
+
298
+ Variables not defined in a site shell script can be set in the
299
+ environment passed to 'configure'. However, some packages may run
300
+ configure again during the build, and the customized values of these
301
+ variables may be lost. In order to avoid this problem, you should set
302
+ them in the 'configure' command line, using 'VAR=value'. For example:
303
+
304
+ ./configure CC=/usr/local2/bin/gcc
305
+
306
+ causes the specified 'gcc' to be used as the C compiler (unless it is
307
+ overridden in the site shell script).
308
+
309
+ Unfortunately, this technique does not work for 'CONFIG_SHELL' due to an
310
+ Autoconf limitation. Until the limitation is lifted, you can use this
311
+ workaround:
312
+
313
+ CONFIG_SHELL=/bin/bash ./configure CONFIG_SHELL=/bin/bash
314
+
315
+ 'configure' Invocation
316
+ ======================
317
+
318
+ 'configure' recognizes the following options to control how it
319
+ operates.
320
+
321
+ '--help'
322
+ '-h'
323
+ Print a summary of all of the options to 'configure', and exit.
324
+
325
+ '--help=short'
326
+ '--help=recursive'
327
+ Print a summary of the options unique to this package's
328
+ 'configure', and exit. The 'short' variant lists options used only
329
+ in the top level, while the 'recursive' variant lists options also
330
+ present in any nested packages.
331
+
332
+ '--version'
333
+ '-V'
334
+ Print the version of Autoconf used to generate the 'configure'
335
+ script, and exit.
336
+
337
+ '--cache-file=FILE'
338
+ Enable the cache: use and save the results of the tests in FILE,
339
+ traditionally 'config.cache'. FILE defaults to '/dev/null' to
340
+ disable caching.
341
+
342
+ '--config-cache'
343
+ '-C'
344
+ Alias for '--cache-file=config.cache'.
345
+
346
+ '--quiet'
347
+ '--silent'
348
+ '-q'
349
+ Do not print messages saying which checks are being made. To
350
+ suppress all normal output, redirect it to '/dev/null' (any error
351
+ messages will still be shown).
352
+
353
+ '--srcdir=DIR'
354
+ Look for the package's source code in directory DIR. Usually
355
+ 'configure' can determine that directory automatically.
356
+
357
+ '--prefix=DIR'
358
+ Use DIR as the installation prefix. *note Installation Names:: for
359
+ more details, including other options available for fine-tuning the
360
+ installation locations.
361
+
362
+ '--no-create'
363
+ '-n'
364
+ Run the configure checks, but stop before creating any output
365
+ files.
366
+
367
+ 'configure' also accepts some other, not widely useful, options. Run
368
+ 'configure --help' for more details.
@@ -0,0 +1,117 @@
1
+ ACLOCAL_AMFLAGS = -I m4
2
+
3
+ SUBDIRS = \
4
+ include \
5
+ common \
6
+ libcerror \
7
+ libcthreads \
8
+ libcdata \
9
+ libclocale \
10
+ libcnotify \
11
+ libcsplit \
12
+ libuna \
13
+ libcfile \
14
+ libcpath \
15
+ libbfio \
16
+ libfcache \
17
+ libfdata \
18
+ libfdatetime \
19
+ libfguid \
20
+ libfvalue \
21
+ libfwevt \
22
+ libfwnt \
23
+ libevtx \
24
+ libexe \
25
+ libregf \
26
+ libwrc \
27
+ libcdirectory \
28
+ evtxtools \
29
+ pyevtx \
30
+ po \
31
+ manuals \
32
+ tests \
33
+ ossfuzz \
34
+ msvscpp
35
+
36
+ DPKG_FILES = \
37
+ dpkg/changelog \
38
+ dpkg/changelog.in \
39
+ dpkg/compat \
40
+ dpkg/control \
41
+ dpkg/copyright \
42
+ dpkg/rules \
43
+ dpkg/libevtx.install \
44
+ dpkg/libevtx-dev.install \
45
+ dpkg/libevtx-python3.install \
46
+ dpkg/libevtx-tools.install \
47
+ dpkg/source/format
48
+
49
+ GETTEXT_FILES = \
50
+ config.rpath \
51
+ po/Makevars.in
52
+
53
+ PKGCONFIG_FILES = \
54
+ libevtx.pc.in
55
+
56
+ SETUP_PY_FILES = \
57
+ _build.py \
58
+ pyproject.toml \
59
+ pyproject.toml.in
60
+
61
+ SPEC_FILES = \
62
+ libevtx.spec \
63
+ libevtx.spec.in
64
+
65
+ EXTRA_DIST = \
66
+ $(DPKG_FILES) \
67
+ $(GETTEXT_FILES) \
68
+ $(PKGCONFIG_FILES) \
69
+ $(SETUP_PY_FILES) \
70
+ $(SPEC_FILES)
71
+
72
+ DISTCLEANFILES = \
73
+ config.status \
74
+ config.cache \
75
+ config.log \
76
+ libevtx.pc \
77
+ libevtx.spec \
78
+ Makefile \
79
+ Makefile.in \
80
+ po/Makevars
81
+
82
+ pkgconfigdir = $(libdir)/pkgconfig
83
+
84
+ pkgconfig_DATA = \
85
+ libevtx.pc
86
+
87
+ check-build: all
88
+ cd $(srcdir)/tests && $(MAKE) check-build $(AM_MAKEFLAGS)
89
+
90
+ libtool:
91
+ @LIBTOOL_DEPS@
92
+ cd $(srcdir) && $(SHELL) ./config.status --recheck
93
+
94
+ lib: library
95
+
96
+ library:
97
+ (cd $(srcdir)/common && $(MAKE) $(AM_MAKEFLAGS))
98
+ (cd $(srcdir)/libcerror && $(MAKE) $(AM_MAKEFLAGS))
99
+ (cd $(srcdir)/libcthreads && $(MAKE) $(AM_MAKEFLAGS))
100
+ (cd $(srcdir)/libcdata && $(MAKE) $(AM_MAKEFLAGS))
101
+ (cd $(srcdir)/libclocale && $(MAKE) $(AM_MAKEFLAGS))
102
+ (cd $(srcdir)/libcnotify && $(MAKE) $(AM_MAKEFLAGS))
103
+ (cd $(srcdir)/libcsplit && $(MAKE) $(AM_MAKEFLAGS))
104
+ (cd $(srcdir)/libuna && $(MAKE) $(AM_MAKEFLAGS))
105
+ (cd $(srcdir)/libcfile && $(MAKE) $(AM_MAKEFLAGS))
106
+ (cd $(srcdir)/libcpath && $(MAKE) $(AM_MAKEFLAGS))
107
+ (cd $(srcdir)/libbfio && $(MAKE) $(AM_MAKEFLAGS))
108
+ (cd $(srcdir)/libfcache && $(MAKE) $(AM_MAKEFLAGS))
109
+ (cd $(srcdir)/libfdata && $(MAKE) $(AM_MAKEFLAGS))
110
+ (cd $(srcdir)/libfdatetime && $(MAKE) $(AM_MAKEFLAGS))
111
+ (cd $(srcdir)/libfguid && $(MAKE) $(AM_MAKEFLAGS))
112
+ (cd $(srcdir)/libfvalue && $(MAKE) $(AM_MAKEFLAGS))
113
+ (cd $(srcdir)/libfwevt && $(MAKE) $(AM_MAKEFLAGS))
114
+ (cd $(srcdir)/libfwnt && $(MAKE) $(AM_MAKEFLAGS))
115
+ (cd $(srcdir)/libevtx && $(MAKE) $(AM_MAKEFLAGS))
116
+ (cd $(srcdir)/po && $(MAKE) $(AM_MAKEFLAGS))
117
+