libexe-python 20240420__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.
- libexe_python-20260705/AUTHORS +4 -0
- {libexe-20240420 → libexe_python-20260705}/INSTALL +0 -0
- libexe_python-20260705/Makefile.am +104 -0
- libexe_python-20260705/Makefile.in +1198 -0
- libexe_python-20260705/PKG-INFO +36 -0
- libexe_python-20260705/README +19 -0
- libexe_python-20260705/_build.py +275 -0
- libexe_python-20260705/acinclude.m4 +36 -0
- libexe_python-20260705/aclocal.m4 +1546 -0
- libexe_python-20260705/common/Makefile.in +765 -0
- libexe_python-20260705/common/byte_stream.h +312 -0
- libexe_python-20260705/common/common.h +43 -0
- libexe_python-20260705/common/config.h +593 -0
- libexe_python-20260705/common/config.h.in +592 -0
- libexe_python-20260705/common/config_borlandc.h +26 -0
- libexe_python-20260705/common/config_msc.h +34 -0
- libexe_python-20260705/common/config_winapi.h +97 -0
- libexe_python-20260705/common/file_stream.h +151 -0
- libexe_python-20260705/common/memory.h +129 -0
- libexe_python-20260705/common/narrow_string.h +187 -0
- libexe_python-20260705/common/system_string.h +154 -0
- libexe_python-20260705/common/types.h +392 -0
- libexe_python-20260705/common/types.h.in +392 -0
- libexe_python-20260705/common/wide_string.h +175 -0
- libexe_python-20260705/config.guess +1754 -0
- libexe_python-20260705/config.sub +1890 -0
- libexe_python-20260705/configure +58979 -0
- libexe_python-20260705/configure.ac +240 -0
- libexe_python-20260705/dpkg/changelog +5 -0
- libexe_python-20260705/dpkg/compat +1 -0
- libexe_python-20260705/dpkg/control +65 -0
- libexe_python-20260705/dpkg/copyright +25 -0
- libexe_python-20260705/dpkg/rules +31 -0
- libexe_python-20260705/exetools/Makefile.am +57 -0
- libexe_python-20260705/exetools/Makefile.in +922 -0
- libexe_python-20260705/exetools/exeinfo.c +349 -0
- libexe_python-20260705/exetools/exetools_getopt.c +572 -0
- libexe_python-20260705/exetools/exetools_getopt.h +106 -0
- libexe_python-20260705/exetools/exetools_i18n.h +48 -0
- libexe_python-20260705/exetools/exetools_libbfio.h +58 -0
- libexe_python-20260705/exetools/exetools_libcerror.h +50 -0
- libexe_python-20260705/exetools/exetools_libclocale.h +50 -0
- libexe_python-20260705/exetools/exetools_libcnotify.h +50 -0
- libexe_python-20260705/exetools/exetools_libexe.h +30 -0
- libexe_python-20260705/exetools/exetools_libfdatetime.h +56 -0
- libexe_python-20260705/exetools/exetools_libuna.h +60 -0
- libexe_python-20260705/exetools/exetools_output.c +172 -0
- libexe_python-20260705/exetools/exetools_output.h +55 -0
- libexe_python-20260705/exetools/exetools_signal.c +262 -0
- libexe_python-20260705/exetools/exetools_signal.h +72 -0
- libexe_python-20260705/exetools/exetools_unused.h +50 -0
- libexe_python-20260705/exetools/info_handle.c +550 -0
- libexe_python-20260705/exetools/info_handle.h +92 -0
- libexe_python-20260705/include/Makefile.in +827 -0
- libexe_python-20260705/include/libexe/codepage.h +122 -0
- libexe_python-20260705/include/libexe/definitions.h +108 -0
- libexe_python-20260705/include/libexe/definitions.h.in +108 -0
- libexe_python-20260705/include/libexe/error.h +291 -0
- libexe_python-20260705/include/libexe/extern.h +47 -0
- libexe_python-20260705/include/libexe/features.h +50 -0
- libexe_python-20260705/include/libexe/features.h.in +50 -0
- libexe_python-20260705/include/libexe/types.h +212 -0
- libexe_python-20260705/include/libexe/types.h.in +212 -0
- libexe_python-20260705/include/libexe.h +489 -0
- libexe_python-20260705/include/libexe.h.in +489 -0
- libexe_python-20260705/libbfio/Makefile.in +928 -0
- libexe_python-20260705/libbfio/libbfio_codepage.h +90 -0
- libexe_python-20260705/libbfio/libbfio_definitions.h +89 -0
- libexe_python-20260705/libbfio/libbfio_error.c +111 -0
- libexe_python-20260705/libbfio/libbfio_error.h +74 -0
- libexe_python-20260705/libbfio/libbfio_extern.h +53 -0
- libexe_python-20260705/libbfio/libbfio_file.c +444 -0
- libexe_python-20260705/libbfio/libbfio_file.h +90 -0
- libexe_python-20260705/libbfio/libbfio_file_io_handle.c +1198 -0
- libexe_python-20260705/libbfio/libbfio_file_io_handle.h +152 -0
- libexe_python-20260705/libbfio/libbfio_file_pool.c +494 -0
- libexe_python-20260705/libbfio/libbfio_file_pool.h +81 -0
- libexe_python-20260705/libbfio/libbfio_file_range.c +468 -0
- libexe_python-20260705/libbfio/libbfio_file_range.h +104 -0
- libexe_python-20260705/libbfio/libbfio_file_range_io_handle.c +1158 -0
- libexe_python-20260705/libbfio/libbfio_file_range_io_handle.h +160 -0
- libexe_python-20260705/libbfio/libbfio_handle.c +2708 -0
- libexe_python-20260705/libbfio/libbfio_handle.h +363 -0
- libexe_python-20260705/libbfio/libbfio_libcdata.h +54 -0
- libexe_python-20260705/libbfio/libbfio_libcerror.h +50 -0
- libexe_python-20260705/libbfio/libbfio_libcfile.h +50 -0
- libexe_python-20260705/libbfio/libbfio_libclocale.h +50 -0
- libexe_python-20260705/libbfio/libbfio_libcpath.h +48 -0
- libexe_python-20260705/libbfio/libbfio_libcthreads.h +64 -0
- libexe_python-20260705/libbfio/libbfio_libuna.h +60 -0
- libexe_python-20260705/libbfio/libbfio_memory_range.c +205 -0
- libexe_python-20260705/libbfio/libbfio_memory_range.h +60 -0
- libexe_python-20260705/libbfio/libbfio_memory_range_io_handle.c +871 -0
- libexe_python-20260705/libbfio/libbfio_memory_range_io_handle.h +129 -0
- libexe_python-20260705/libbfio/libbfio_pool.c +3523 -0
- libexe_python-20260705/libbfio/libbfio_pool.h +275 -0
- libexe_python-20260705/libbfio/libbfio_support.c +93 -0
- libexe_python-20260705/libbfio/libbfio_support.h +58 -0
- libexe_python-20260705/libbfio/libbfio_system_string.c +1017 -0
- libexe_python-20260705/libbfio/libbfio_system_string.h +95 -0
- libexe_python-20260705/libbfio/libbfio_types.h +49 -0
- libexe_python-20260705/libbfio/libbfio_unused.h +44 -0
- libexe_python-20260705/libcdata/Makefile.in +907 -0
- libexe_python-20260705/libcdata/libcdata_array.c +2015 -0
- libexe_python-20260705/libcdata/libcdata_array.h +200 -0
- libexe_python-20260705/libcdata/libcdata_btree.c +964 -0
- libexe_python-20260705/libcdata/libcdata_btree.h +141 -0
- libexe_python-20260705/libcdata/libcdata_btree_node.c +1607 -0
- libexe_python-20260705/libcdata/libcdata_btree_node.h +101 -0
- libexe_python-20260705/libcdata/libcdata_btree_values_list.c +217 -0
- libexe_python-20260705/libcdata/libcdata_btree_values_list.h +55 -0
- libexe_python-20260705/libcdata/libcdata_definitions.h +81 -0
- libexe_python-20260705/libcdata/libcdata_error.c +111 -0
- libexe_python-20260705/libcdata/libcdata_error.h +74 -0
- libexe_python-20260705/libcdata/libcdata_extern.h +53 -0
- libexe_python-20260705/libcdata/libcdata_libcerror.h +50 -0
- libexe_python-20260705/libcdata/libcdata_libcthreads.h +64 -0
- libexe_python-20260705/libcdata/libcdata_list.c +2906 -0
- libexe_python-20260705/libcdata/libcdata_list.h +235 -0
- libexe_python-20260705/libcdata/libcdata_list_element.c +926 -0
- libexe_python-20260705/libcdata/libcdata_list_element.h +142 -0
- libexe_python-20260705/libcdata/libcdata_range_list.c +4922 -0
- libexe_python-20260705/libcdata/libcdata_range_list.h +382 -0
- libexe_python-20260705/libcdata/libcdata_range_list_value.c +429 -0
- libexe_python-20260705/libcdata/libcdata_range_list_value.h +100 -0
- libexe_python-20260705/libcdata/libcdata_support.c +39 -0
- libexe_python-20260705/libcdata/libcdata_support.h +47 -0
- libexe_python-20260705/libcdata/libcdata_tree_node.c +4271 -0
- libexe_python-20260705/libcdata/libcdata_tree_node.h +308 -0
- libexe_python-20260705/libcdata/libcdata_types.h +57 -0
- libexe_python-20260705/libcdata/libcdata_unused.h +44 -0
- libexe_python-20260705/libcerror/Makefile.in +849 -0
- libexe_python-20260705/libcerror/libcerror_definitions.h +326 -0
- libexe_python-20260705/libcerror/libcerror_error.c +827 -0
- libexe_python-20260705/libcerror/libcerror_error.h +125 -0
- libexe_python-20260705/libcerror/libcerror_extern.h +53 -0
- libexe_python-20260705/libcerror/libcerror_support.c +39 -0
- libexe_python-20260705/libcerror/libcerror_support.h +47 -0
- libexe_python-20260705/libcerror/libcerror_system.c +569 -0
- libexe_python-20260705/libcerror/libcerror_system.h +78 -0
- libexe_python-20260705/libcerror/libcerror_types.h +51 -0
- libexe_python-20260705/libcerror/libcerror_unused.h +44 -0
- libexe_python-20260705/libcfile/Makefile.in +876 -0
- libexe_python-20260705/libcfile/libcfile_definitions.h +101 -0
- libexe_python-20260705/libcfile/libcfile_error.c +111 -0
- libexe_python-20260705/libcfile/libcfile_error.h +74 -0
- libexe_python-20260705/libcfile/libcfile_extern.h +53 -0
- libexe_python-20260705/libcfile/libcfile_file.c +5022 -0
- libexe_python-20260705/libcfile/libcfile_file.h +277 -0
- libexe_python-20260705/libcfile/libcfile_libcerror.h +50 -0
- libexe_python-20260705/libcfile/libcfile_libclocale.h +50 -0
- libexe_python-20260705/libcfile/libcfile_libcnotify.h +50 -0
- libexe_python-20260705/libcfile/libcfile_libuna.h +60 -0
- libexe_python-20260705/libcfile/libcfile_notify.c +120 -0
- libexe_python-20260705/libcfile/libcfile_notify.h +63 -0
- libexe_python-20260705/libcfile/libcfile_support.c +1171 -0
- libexe_python-20260705/libcfile/libcfile_support.h +98 -0
- libexe_python-20260705/libcfile/libcfile_system_string.c +1017 -0
- libexe_python-20260705/libcfile/libcfile_system_string.h +95 -0
- libexe_python-20260705/libcfile/libcfile_types.h +47 -0
- libexe_python-20260705/libcfile/libcfile_unused.h +44 -0
- libexe_python-20260705/libcfile/libcfile_winapi.c +815 -0
- libexe_python-20260705/libcfile/libcfile_winapi.h +122 -0
- libexe_python-20260705/libclocale/Makefile.in +859 -0
- libexe_python-20260705/libclocale/libclocale_codepage.c +950 -0
- libexe_python-20260705/libclocale/libclocale_codepage.h +73 -0
- libexe_python-20260705/libclocale/libclocale_definitions.h +106 -0
- libexe_python-20260705/libclocale/libclocale_extern.h +53 -0
- libexe_python-20260705/libclocale/libclocale_libcerror.h +50 -0
- libexe_python-20260705/libclocale/libclocale_locale.c +494 -0
- libexe_python-20260705/libclocale/libclocale_locale.h +66 -0
- libexe_python-20260705/libclocale/libclocale_support.c +130 -0
- libexe_python-20260705/libclocale/libclocale_support.h +55 -0
- libexe_python-20260705/libclocale/libclocale_unused.h +44 -0
- libexe_python-20260705/libclocale/libclocale_wide_string.c +69 -0
- libexe_python-20260705/libclocale/libclocale_wide_string.h +54 -0
- libexe_python-20260705/libcnotify/Makefile.in +857 -0
- libexe_python-20260705/libcnotify/libcnotify_definitions.h +54 -0
- libexe_python-20260705/libcnotify/libcnotify_extern.h +53 -0
- libexe_python-20260705/libcnotify/libcnotify_libcerror.h +50 -0
- libexe_python-20260705/libcnotify/libcnotify_print.c +386 -0
- libexe_python-20260705/libcnotify/libcnotify_print.h +68 -0
- libexe_python-20260705/libcnotify/libcnotify_stream.c +182 -0
- libexe_python-20260705/libcnotify/libcnotify_stream.h +59 -0
- libexe_python-20260705/libcnotify/libcnotify_support.c +39 -0
- libexe_python-20260705/libcnotify/libcnotify_support.h +49 -0
- libexe_python-20260705/libcnotify/libcnotify_unused.h +44 -0
- libexe_python-20260705/libcnotify/libcnotify_verbose.c +38 -0
- libexe_python-20260705/libcnotify/libcnotify_verbose.h +46 -0
- libexe_python-20260705/libcpath/Makefile.in +861 -0
- libexe_python-20260705/libcpath/libcpath_definitions.h +79 -0
- libexe_python-20260705/libcpath/libcpath_error.c +111 -0
- libexe_python-20260705/libcpath/libcpath_error.h +74 -0
- libexe_python-20260705/libcpath/libcpath_extern.h +53 -0
- libexe_python-20260705/libcpath/libcpath_libcerror.h +50 -0
- libexe_python-20260705/libcpath/libcpath_libclocale.h +50 -0
- libexe_python-20260705/libcpath/libcpath_libcsplit.h +52 -0
- libexe_python-20260705/libcpath/libcpath_libuna.h +60 -0
- libexe_python-20260705/libcpath/libcpath_path.c +7508 -0
- libexe_python-20260705/libcpath/libcpath_path.h +293 -0
- libexe_python-20260705/libcpath/libcpath_support.c +93 -0
- libexe_python-20260705/libcpath/libcpath_support.h +58 -0
- libexe_python-20260705/libcpath/libcpath_system_string.c +1017 -0
- libexe_python-20260705/libcpath/libcpath_system_string.h +95 -0
- libexe_python-20260705/libcpath/libcpath_unused.h +44 -0
- libexe_python-20260705/libcsplit/Makefile.in +874 -0
- libexe_python-20260705/libcsplit/libcsplit_definitions.h +47 -0
- libexe_python-20260705/libcsplit/libcsplit_error.c +111 -0
- libexe_python-20260705/libcsplit/libcsplit_error.h +74 -0
- libexe_python-20260705/libcsplit/libcsplit_extern.h +53 -0
- libexe_python-20260705/libcsplit/libcsplit_libcerror.h +50 -0
- libexe_python-20260705/libcsplit/libcsplit_narrow_split_string.c +547 -0
- libexe_python-20260705/libcsplit/libcsplit_narrow_split_string.h +107 -0
- libexe_python-20260705/libcsplit/libcsplit_narrow_string.c +288 -0
- libexe_python-20260705/libcsplit/libcsplit_narrow_string.h +49 -0
- libexe_python-20260705/libcsplit/libcsplit_support.c +39 -0
- libexe_python-20260705/libcsplit/libcsplit_support.h +47 -0
- libexe_python-20260705/libcsplit/libcsplit_types.h +49 -0
- libexe_python-20260705/libcsplit/libcsplit_unused.h +44 -0
- libexe_python-20260705/libcsplit/libcsplit_wide_split_string.c +551 -0
- libexe_python-20260705/libcsplit/libcsplit_wide_split_string.h +111 -0
- libexe_python-20260705/libcsplit/libcsplit_wide_string.c +292 -0
- libexe_python-20260705/libcsplit/libcsplit_wide_string.h +53 -0
- libexe_python-20260705/libcthreads/Makefile.in +909 -0
- libexe_python-20260705/libcthreads/libcthreads_condition.c +735 -0
- libexe_python-20260705/libcthreads/libcthreads_condition.h +120 -0
- libexe_python-20260705/libcthreads/libcthreads_definitions.h +84 -0
- libexe_python-20260705/libcthreads/libcthreads_error.c +111 -0
- libexe_python-20260705/libcthreads/libcthreads_error.h +74 -0
- libexe_python-20260705/libcthreads/libcthreads_extern.h +53 -0
- libexe_python-20260705/libcthreads/libcthreads_libcerror.h +50 -0
- libexe_python-20260705/libcthreads/libcthreads_lock.c +391 -0
- libexe_python-20260705/libcthreads/libcthreads_lock.h +88 -0
- libexe_python-20260705/libcthreads/libcthreads_mutex.c +601 -0
- libexe_python-20260705/libcthreads/libcthreads_mutex.h +98 -0
- libexe_python-20260705/libcthreads/libcthreads_queue.c +1150 -0
- libexe_python-20260705/libcthreads/libcthreads_queue.h +136 -0
- libexe_python-20260705/libcthreads/libcthreads_read_write_lock.c +690 -0
- libexe_python-20260705/libcthreads/libcthreads_read_write_lock.h +119 -0
- libexe_python-20260705/libcthreads/libcthreads_repeating_thread.c +683 -0
- libexe_python-20260705/libcthreads/libcthreads_repeating_thread.h +123 -0
- libexe_python-20260705/libcthreads/libcthreads_support.c +39 -0
- libexe_python-20260705/libcthreads/libcthreads_support.h +47 -0
- libexe_python-20260705/libcthreads/libcthreads_thread.c +411 -0
- libexe_python-20260705/libcthreads/libcthreads_thread.h +95 -0
- libexe_python-20260705/libcthreads/libcthreads_thread_attributes.c +149 -0
- libexe_python-20260705/libcthreads/libcthreads_thread_attributes.h +78 -0
- libexe_python-20260705/libcthreads/libcthreads_thread_pool.c +1725 -0
- libexe_python-20260705/libcthreads/libcthreads_thread_pool.h +177 -0
- libexe_python-20260705/libcthreads/libcthreads_types.h +63 -0
- libexe_python-20260705/libcthreads/libcthreads_unused.h +44 -0
- libexe_python-20260705/libexe/Makefile.in +1040 -0
- libexe_python-20260705/libexe/exe_file_header.h +508 -0
- libexe_python-20260705/libexe/exe_le_header.h +52 -0
- libexe_python-20260705/libexe/exe_mz_header.h +124 -0
- libexe_python-20260705/libexe/exe_ne_header.h +56 -0
- libexe_python-20260705/libexe/exe_pe_header.h +48 -0
- libexe_python-20260705/libexe/exe_section_table.h +93 -0
- libexe_python-20260705/libexe/libexe.c +84 -0
- libexe_python-20260705/libexe/libexe.rc +38 -0
- libexe_python-20260705/libexe/libexe.rc.in +38 -0
- libexe_python-20260705/libexe/libexe_codepage.h +90 -0
- libexe_python-20260705/libexe/libexe_coff_header.c +358 -0
- libexe_python-20260705/libexe/libexe_coff_header.h +77 -0
- libexe_python-20260705/libexe/libexe_coff_optional_header.c +1257 -0
- libexe_python-20260705/libexe/libexe_coff_optional_header.h +72 -0
- libexe_python-20260705/libexe/libexe_data_directory_descriptor.h +52 -0
- libexe_python-20260705/libexe/libexe_debug.c +532 -0
- libexe_python-20260705/libexe/libexe_debug.h +67 -0
- libexe_python-20260705/libexe/libexe_debug_data.c +246 -0
- libexe_python-20260705/libexe/libexe_debug_data.h +64 -0
- libexe_python-20260705/libexe/libexe_definitions.h +163 -0
- libexe_python-20260705/libexe/libexe_definitions.h.in +163 -0
- libexe_python-20260705/libexe/libexe_error.c +111 -0
- libexe_python-20260705/libexe/libexe_error.h +74 -0
- libexe_python-20260705/libexe/libexe_export_table.c +248 -0
- libexe_python-20260705/libexe/libexe_export_table.h +64 -0
- libexe_python-20260705/libexe/libexe_extern.h +53 -0
- libexe_python-20260705/libexe/libexe_file.c +1693 -0
- libexe_python-20260705/libexe/libexe_file.h +165 -0
- libexe_python-20260705/libexe/libexe_import_table.c +248 -0
- libexe_python-20260705/libexe/libexe_import_table.h +64 -0
- libexe_python-20260705/libexe/libexe_io_handle.c +1272 -0
- libexe_python-20260705/libexe/libexe_io_handle.h +142 -0
- libexe_python-20260705/libexe/libexe_le_header.c +297 -0
- libexe_python-20260705/libexe/libexe_le_header.h +69 -0
- libexe_python-20260705/libexe/libexe_libbfio.h +58 -0
- libexe_python-20260705/libexe/libexe_libcdata.h +54 -0
- libexe_python-20260705/libexe/libexe_libcerror.h +50 -0
- libexe_python-20260705/libexe/libexe_libclocale.h +50 -0
- libexe_python-20260705/libexe/libexe_libcnotify.h +50 -0
- libexe_python-20260705/libexe/libexe_libfcache.h +50 -0
- libexe_python-20260705/libexe/libexe_libfdata.h +54 -0
- libexe_python-20260705/libexe/libexe_libfdatetime.h +56 -0
- libexe_python-20260705/libexe/libexe_libuna.h +60 -0
- libexe_python-20260705/libexe/libexe_mz_header.c +440 -0
- libexe_python-20260705/libexe/libexe_mz_header.h +69 -0
- libexe_python-20260705/libexe/libexe_ne_header.c +297 -0
- libexe_python-20260705/libexe/libexe_ne_header.h +69 -0
- libexe_python-20260705/libexe/libexe_notify.c +120 -0
- libexe_python-20260705/libexe/libexe_notify.h +63 -0
- libexe_python-20260705/libexe/libexe_section.c +996 -0
- libexe_python-20260705/libexe/libexe_section.h +164 -0
- libexe_python-20260705/libexe/libexe_section_descriptor.c +320 -0
- libexe_python-20260705/libexe/libexe_section_descriptor.h +87 -0
- libexe_python-20260705/libexe/libexe_section_io_handle.c +651 -0
- libexe_python-20260705/libexe/libexe_section_io_handle.h +111 -0
- libexe_python-20260705/libexe/libexe_support.c +430 -0
- libexe_python-20260705/libexe/libexe_support.h +82 -0
- libexe_python-20260705/libexe/libexe_types.h +49 -0
- libexe_python-20260705/libexe/libexe_unused.h +44 -0
- libexe_python-20260705/libexe.spec +99 -0
- libexe_python-20260705/libfcache/Makefile.in +870 -0
- libexe_python-20260705/libfcache/libfcache_cache.c +1118 -0
- libexe_python-20260705/libfcache/libfcache_cache.h +149 -0
- libexe_python-20260705/libfcache/libfcache_cache_value.c +502 -0
- libexe_python-20260705/libfcache/libfcache_cache_value.h +132 -0
- libexe_python-20260705/libfcache/libfcache_date_time.c +92 -0
- libexe_python-20260705/libfcache/libfcache_date_time.h +45 -0
- libexe_python-20260705/libfcache/libfcache_definitions.h +58 -0
- libexe_python-20260705/libfcache/libfcache_error.c +111 -0
- libexe_python-20260705/libfcache/libfcache_error.h +74 -0
- libexe_python-20260705/libfcache/libfcache_extern.h +40 -0
- libexe_python-20260705/libfcache/libfcache_libcdata.h +54 -0
- libexe_python-20260705/libfcache/libfcache_libcerror.h +50 -0
- libexe_python-20260705/libfcache/libfcache_support.c +41 -0
- libexe_python-20260705/libfcache/libfcache_support.h +47 -0
- libexe_python-20260705/libfcache/libfcache_types.h +49 -0
- libexe_python-20260705/libfcache/libfcache_unused.h +44 -0
- libexe_python-20260705/libfdata/Makefile.in +923 -0
- libexe_python-20260705/libfdata/libfdata_area.c +1482 -0
- libexe_python-20260705/libfdata/libfdata_area.h +278 -0
- libexe_python-20260705/libfdata/libfdata_cache.c +59 -0
- libexe_python-20260705/libfdata/libfdata_cache.h +56 -0
- libexe_python-20260705/libfdata/libfdata_definitions.h +249 -0
- libexe_python-20260705/libfdata/libfdata_error.c +111 -0
- libexe_python-20260705/libfdata/libfdata_error.h +74 -0
- libexe_python-20260705/libfdata/libfdata_extern.h +40 -0
- libexe_python-20260705/libfdata/libfdata_libcdata.h +54 -0
- libexe_python-20260705/libfdata/libfdata_libcerror.h +50 -0
- libexe_python-20260705/libfdata/libfdata_libcnotify.h +50 -0
- libexe_python-20260705/libfdata/libfdata_libfcache.h +50 -0
- libexe_python-20260705/libfdata/libfdata_list.c +4426 -0
- libexe_python-20260705/libfdata/libfdata_list.h +452 -0
- libexe_python-20260705/libfdata/libfdata_list_element.c +824 -0
- libexe_python-20260705/libfdata/libfdata_list_element.h +159 -0
- libexe_python-20260705/libfdata/libfdata_mapped_range.c +312 -0
- libexe_python-20260705/libfdata/libfdata_mapped_range.h +77 -0
- libexe_python-20260705/libfdata/libfdata_notify.c +120 -0
- libexe_python-20260705/libfdata/libfdata_notify.h +63 -0
- libexe_python-20260705/libfdata/libfdata_range.c +358 -0
- libexe_python-20260705/libfdata/libfdata_range.h +94 -0
- libexe_python-20260705/libfdata/libfdata_range_list.c +1196 -0
- libexe_python-20260705/libfdata/libfdata_range_list.h +214 -0
- libexe_python-20260705/libfdata/libfdata_segments_array.c +914 -0
- libexe_python-20260705/libfdata/libfdata_segments_array.h +94 -0
- libexe_python-20260705/libfdata/libfdata_stream.c +2582 -0
- libexe_python-20260705/libfdata/libfdata_stream.h +363 -0
- libexe_python-20260705/libfdata/libfdata_support.c +41 -0
- libexe_python-20260705/libfdata/libfdata_support.h +47 -0
- libexe_python-20260705/libfdata/libfdata_types.h +59 -0
- libexe_python-20260705/libfdata/libfdata_unused.h +44 -0
- libexe_python-20260705/libfdata/libfdata_vector.c +1932 -0
- libexe_python-20260705/libfdata/libfdata_vector.h +295 -0
- libexe_python-20260705/libfdatetime/Makefile.in +901 -0
- libexe_python-20260705/libfdatetime/libfdatetime_date_time_values.c +1906 -0
- libexe_python-20260705/libfdatetime/libfdatetime_date_time_values.h +121 -0
- libexe_python-20260705/libfdatetime/libfdatetime_definitions.h +121 -0
- libexe_python-20260705/libfdatetime/libfdatetime_error.c +111 -0
- libexe_python-20260705/libfdatetime/libfdatetime_error.h +74 -0
- libexe_python-20260705/libfdatetime/libfdatetime_extern.h +40 -0
- libexe_python-20260705/libfdatetime/libfdatetime_fat_date_time.c +1258 -0
- libexe_python-20260705/libfdatetime/libfdatetime_fat_date_time.h +172 -0
- libexe_python-20260705/libfdatetime/libfdatetime_filetime.c +1465 -0
- libexe_python-20260705/libfdatetime/libfdatetime_filetime.h +177 -0
- libexe_python-20260705/libfdatetime/libfdatetime_floatingtime.c +1333 -0
- libexe_python-20260705/libfdatetime/libfdatetime_floatingtime.h +168 -0
- libexe_python-20260705/libfdatetime/libfdatetime_hfs_time.c +1329 -0
- libexe_python-20260705/libfdatetime/libfdatetime_hfs_time.h +166 -0
- libexe_python-20260705/libfdatetime/libfdatetime_libcerror.h +50 -0
- libexe_python-20260705/libfdatetime/libfdatetime_nsf_timedate.c +1373 -0
- libexe_python-20260705/libfdatetime/libfdatetime_nsf_timedate.h +177 -0
- libexe_python-20260705/libfdatetime/libfdatetime_posix_time.c +1918 -0
- libexe_python-20260705/libfdatetime/libfdatetime_posix_time.h +189 -0
- libexe_python-20260705/libfdatetime/libfdatetime_support.c +41 -0
- libexe_python-20260705/libfdatetime/libfdatetime_support.h +47 -0
- libexe_python-20260705/libfdatetime/libfdatetime_systemtime.c +1779 -0
- libexe_python-20260705/libfdatetime/libfdatetime_systemtime.h +180 -0
- libexe_python-20260705/libfdatetime/libfdatetime_types.h +63 -0
- libexe_python-20260705/libfdatetime/libfdatetime_unused.h +44 -0
- libexe_python-20260705/libuna/Makefile.in +1270 -0
- libexe_python-20260705/libuna/libuna_base16_stream.c +1511 -0
- libexe_python-20260705/libuna/libuna_base16_stream.h +93 -0
- libexe_python-20260705/libuna/libuna_base32_stream.c +3035 -0
- libexe_python-20260705/libuna/libuna_base32_stream.h +131 -0
- libexe_python-20260705/libuna/libuna_base64_stream.c +2832 -0
- libexe_python-20260705/libuna/libuna_base64_stream.h +131 -0
- libexe_python-20260705/libuna/libuna_byte_stream.c +633 -0
- libexe_python-20260705/libuna/libuna_byte_stream.h +104 -0
- libexe_python-20260705/libuna/libuna_codepage_iso_8859_10.c +73 -0
- libexe_python-20260705/libuna/libuna_codepage_iso_8859_10.h +48 -0
- libexe_python-20260705/libuna/libuna_codepage_iso_8859_13.c +82 -0
- libexe_python-20260705/libuna/libuna_codepage_iso_8859_13.h +48 -0
- libexe_python-20260705/libuna/libuna_codepage_iso_8859_14.c +66 -0
- libexe_python-20260705/libuna/libuna_codepage_iso_8859_14.h +51 -0
- libexe_python-20260705/libuna/libuna_codepage_iso_8859_15.c +46 -0
- libexe_python-20260705/libuna/libuna_codepage_iso_8859_15.h +45 -0
- libexe_python-20260705/libuna/libuna_codepage_iso_8859_16.c +78 -0
- libexe_python-20260705/libuna/libuna_codepage_iso_8859_16.h +57 -0
- libexe_python-20260705/libuna/libuna_codepage_iso_8859_2.c +82 -0
- libexe_python-20260705/libuna/libuna_codepage_iso_8859_2.h +51 -0
- libexe_python-20260705/libuna/libuna_codepage_iso_8859_3.c +79 -0
- libexe_python-20260705/libuna/libuna_codepage_iso_8859_3.h +57 -0
- libexe_python-20260705/libuna/libuna_codepage_iso_8859_4.c +80 -0
- libexe_python-20260705/libuna/libuna_codepage_iso_8859_4.h +48 -0
- libexe_python-20260705/libuna/libuna_codepage_iso_8859_5.c +62 -0
- libexe_python-20260705/libuna/libuna_codepage_iso_8859_5.h +45 -0
- libexe_python-20260705/libuna/libuna_codepage_iso_8859_6.c +58 -0
- libexe_python-20260705/libuna/libuna_codepage_iso_8859_6.h +45 -0
- libexe_python-20260705/libuna/libuna_codepage_iso_8859_7.c +66 -0
- libexe_python-20260705/libuna/libuna_codepage_iso_8859_7.h +48 -0
- libexe_python-20260705/libuna/libuna_codepage_iso_8859_8.c +61 -0
- libexe_python-20260705/libuna/libuna_codepage_iso_8859_8.h +48 -0
- libexe_python-20260705/libuna/libuna_codepage_iso_8859_9.c +50 -0
- libexe_python-20260705/libuna/libuna_codepage_iso_8859_9.h +45 -0
- libexe_python-20260705/libuna/libuna_codepage_koi8_r.c +392 -0
- libexe_python-20260705/libuna/libuna_codepage_koi8_r.h +54 -0
- libexe_python-20260705/libuna/libuna_codepage_koi8_u.c +424 -0
- libexe_python-20260705/libuna/libuna_codepage_koi8_u.h +54 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_arabic.c +352 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_arabic.h +54 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_celtic.c +395 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_celtic.h +54 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_centraleurroman.c +319 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_centraleurroman.h +54 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_croatian.c +378 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_croatian.h +54 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_cyrillic.c +325 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_cyrillic.h +54 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_dingbats.c +347 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_dingbats.h +54 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_farsi.c +372 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_farsi.h +54 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_gaelic.c +437 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_gaelic.h +54 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_greek.c +305 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_greek.h +54 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_icelandic.c +381 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_icelandic.h +54 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_inuit.c +380 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_inuit.h +54 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_roman.c +387 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_roman.h +54 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_romanian.c +396 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_romanian.h +54 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_russian.c +317 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_russian.h +54 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_symbol.c +537 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_symbol.h +59 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_thai.c +330 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_thai.h +59 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_turkish.c +397 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_turkish.h +54 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_ukrainian.c +321 -0
- libexe_python-20260705/libuna/libuna_codepage_mac_ukrainian.h +54 -0
- libexe_python-20260705/libuna/libuna_codepage_windows_1250.c +313 -0
- libexe_python-20260705/libuna/libuna_codepage_windows_1250.h +54 -0
- libexe_python-20260705/libuna/libuna_codepage_windows_1251.c +301 -0
- libexe_python-20260705/libuna/libuna_codepage_windows_1251.h +54 -0
- libexe_python-20260705/libuna/libuna_codepage_windows_1252.c +287 -0
- libexe_python-20260705/libuna/libuna_codepage_windows_1252.h +54 -0
- libexe_python-20260705/libuna/libuna_codepage_windows_1253.c +291 -0
- libexe_python-20260705/libuna/libuna_codepage_windows_1253.h +54 -0
- libexe_python-20260705/libuna/libuna_codepage_windows_1254.c +348 -0
- libexe_python-20260705/libuna/libuna_codepage_windows_1254.h +54 -0
- libexe_python-20260705/libuna/libuna_codepage_windows_1255.c +328 -0
- libexe_python-20260705/libuna/libuna_codepage_windows_1255.h +54 -0
- libexe_python-20260705/libuna/libuna_codepage_windows_1256.c +372 -0
- libexe_python-20260705/libuna/libuna_codepage_windows_1256.h +54 -0
- libexe_python-20260705/libuna/libuna_codepage_windows_1257.c +303 -0
- libexe_python-20260705/libuna/libuna_codepage_windows_1257.h +54 -0
- libexe_python-20260705/libuna/libuna_codepage_windows_1258.c +349 -0
- libexe_python-20260705/libuna/libuna_codepage_windows_1258.h +54 -0
- libexe_python-20260705/libuna/libuna_codepage_windows_874.c +274 -0
- libexe_python-20260705/libuna/libuna_codepage_windows_874.h +54 -0
- libexe_python-20260705/libuna/libuna_codepage_windows_932.c +4913 -0
- libexe_python-20260705/libuna/libuna_codepage_windows_932.h +59 -0
- libexe_python-20260705/libuna/libuna_codepage_windows_936.c +7371 -0
- libexe_python-20260705/libuna/libuna_codepage_windows_936.h +59 -0
- libexe_python-20260705/libuna/libuna_codepage_windows_949.c +8163 -0
- libexe_python-20260705/libuna/libuna_codepage_windows_949.h +59 -0
- libexe_python-20260705/libuna/libuna_codepage_windows_950.c +6390 -0
- libexe_python-20260705/libuna/libuna_codepage_windows_950.h +59 -0
- libexe_python-20260705/libuna/libuna_definitions.h +436 -0
- libexe_python-20260705/libuna/libuna_error.c +111 -0
- libexe_python-20260705/libuna/libuna_error.h +74 -0
- libexe_python-20260705/libuna/libuna_extern.h +53 -0
- libexe_python-20260705/libuna/libuna_libcerror.h +50 -0
- libexe_python-20260705/libuna/libuna_scsu.c +64 -0
- libexe_python-20260705/libuna/libuna_scsu.h +45 -0
- libexe_python-20260705/libuna/libuna_support.c +39 -0
- libexe_python-20260705/libuna/libuna_support.h +49 -0
- libexe_python-20260705/libuna/libuna_types.h +53 -0
- libexe_python-20260705/libuna/libuna_unicode_character.c +5828 -0
- libexe_python-20260705/libuna/libuna_unicode_character.h +260 -0
- libexe_python-20260705/libuna/libuna_unused.h +44 -0
- libexe_python-20260705/libuna/libuna_url_stream.c +584 -0
- libexe_python-20260705/libuna/libuna_url_stream.h +71 -0
- libexe_python-20260705/libuna/libuna_utf16_stream.c +815 -0
- libexe_python-20260705/libuna/libuna_utf16_stream.h +109 -0
- libexe_python-20260705/libuna/libuna_utf16_string.c +3950 -0
- libexe_python-20260705/libuna/libuna_utf16_string.h +325 -0
- libexe_python-20260705/libuna/libuna_utf32_stream.c +819 -0
- libexe_python-20260705/libuna/libuna_utf32_stream.h +109 -0
- libexe_python-20260705/libuna/libuna_utf32_string.c +3808 -0
- libexe_python-20260705/libuna/libuna_utf32_string.h +321 -0
- libexe_python-20260705/libuna/libuna_utf7_stream.c +628 -0
- libexe_python-20260705/libuna/libuna_utf7_stream.h +98 -0
- libexe_python-20260705/libuna/libuna_utf8_stream.c +748 -0
- libexe_python-20260705/libuna/libuna_utf8_stream.h +105 -0
- libexe_python-20260705/libuna/libuna_utf8_string.c +4092 -0
- libexe_python-20260705/libuna/libuna_utf8_string.h +329 -0
- libexe_python-20260705/ltmain.sh +11436 -0
- libexe_python-20260705/m4/common.m4 +656 -0
- libexe_python-20260705/m4/libbfio.m4 +215 -0
- libexe_python-20260705/m4/libcdata.m4 +227 -0
- libexe_python-20260705/m4/libcerror.m4 +186 -0
- libexe_python-20260705/m4/libcfile.m4 +307 -0
- libexe_python-20260705/m4/libclocale.m4 +242 -0
- libexe_python-20260705/m4/libcnotify.m4 +160 -0
- libexe_python-20260705/m4/libcpath.m4 +274 -0
- libexe_python-20260705/m4/libcsplit.m4 +183 -0
- libexe_python-20260705/m4/libcthreads.m4 +214 -0
- libexe_python-20260705/m4/libfcache.m4 +173 -0
- libexe_python-20260705/m4/libfdata.m4 +241 -0
- libexe_python-20260705/m4/libfdatetime.m4 +219 -0
- libexe_python-20260705/m4/libtool.m4 +8427 -0
- libexe_python-20260705/m4/libuna.m4 +311 -0
- {libexe-20240420 → libexe_python-20260705}/m4/ltoptions.m4 +0 -0
- {libexe-20240420 → libexe_python-20260705}/m4/ltsugar.m4 +0 -0
- {libexe-20240420 → libexe_python-20260705}/m4/ltversion.m4 +0 -0
- {libexe-20240420 → libexe_python-20260705}/m4/lt~obsolete.m4 +0 -0
- libexe_python-20260705/m4/pthread.m4 +126 -0
- libexe_python-20260705/m4/python.m4 +222 -0
- libexe_python-20260705/m4/tests.m4 +319 -0
- libexe_python-20260705/m4/types.m4 +133 -0
- libexe_python-20260705/m4/yaltools.m4 +89 -0
- libexe_python-20260705/manuals/Makefile.am +11 -0
- libexe_python-20260705/manuals/Makefile.in +793 -0
- libexe_python-20260705/manuals/exeinfo.1 +92 -0
- libexe_python-20260705/manuals/libexe.3 +401 -0
- libexe_python-20260705/msvscpp/Makefile.in +704 -0
- libexe_python-20260705/msvscpp/libexe.sln +417 -0
- libexe_python-20260705/msvscpp/pyexe/pyexe.vcproj +284 -0
- libexe_python-20260705/ossfuzz/Makefile.in +912 -0
- libexe_python-20260705/ossfuzz/file_fuzzer.cc +99 -0
- libexe_python-20260705/ossfuzz/ossfuzz_libbfio.h +58 -0
- libexe_python-20260705/ossfuzz/ossfuzz_libexe.h +30 -0
- libexe_python-20260705/po/Makevars +45 -0
- libexe_python-20260705/pyexe/Makefile.am +53 -0
- libexe_python-20260705/pyexe/Makefile.in +1028 -0
- libexe_python-20260705/pyexe/pyexe.c +678 -0
- libexe_python-20260705/pyexe/pyexe.h +71 -0
- libexe_python-20260705/pyexe/pyexe_codepage.c +138 -0
- libexe_python-20260705/pyexe/pyexe_codepage.h +42 -0
- libexe_python-20260705/pyexe/pyexe_datetime.c +691 -0
- libexe_python-20260705/pyexe/pyexe_datetime.h +65 -0
- libexe_python-20260705/pyexe/pyexe_error.c +422 -0
- libexe_python-20260705/pyexe/pyexe_error.h +60 -0
- libexe_python-20260705/pyexe/pyexe_file.c +1465 -0
- libexe_python-20260705/pyexe/pyexe_file.h +125 -0
- libexe_python-20260705/pyexe/pyexe_file_object_io_handle.c +1524 -0
- libexe_python-20260705/pyexe/pyexe_file_object_io_handle.h +141 -0
- libexe_python-20260705/pyexe/pyexe_integer.c +399 -0
- libexe_python-20260705/pyexe/pyexe_integer.h +56 -0
- libexe_python-20260705/pyexe/pyexe_libbfio.h +54 -0
- libexe_python-20260705/pyexe/pyexe_libcerror.h +50 -0
- libexe_python-20260705/pyexe/pyexe_libclocale.h +50 -0
- libexe_python-20260705/pyexe/pyexe_libexe.h +30 -0
- libexe_python-20260705/pyexe/pyexe_python.h +83 -0
- libexe_python-20260705/pyexe/pyexe_section.c +1055 -0
- libexe_python-20260705/pyexe/pyexe_section.h +106 -0
- libexe_python-20260705/pyexe/pyexe_sections.c +452 -0
- libexe_python-20260705/pyexe/pyexe_sections.h +95 -0
- libexe_python-20260705/pyexe/pyexe_unused.h +44 -0
- libexe_python-20260705/pyproject.toml +35 -0
- libexe_python-20260705/pyproject.toml.in +35 -0
- libexe_python-20260705/tests/Makefile.am +416 -0
- libexe_python-20260705/tests/Makefile.in +1523 -0
- libexe_python-20260705/tests/atlocal.in +29 -0
- libexe_python-20260705/tests/exe_test_coff_header.c +317 -0
- libexe_python-20260705/tests/exe_test_coff_optional_header.c +317 -0
- libexe_python-20260705/tests/exe_test_data_directory_descriptor.c +58 -0
- libexe_python-20260705/tests/exe_test_debug_data.c +420 -0
- libexe_python-20260705/tests/exe_test_error.c +150 -0
- libexe_python-20260705/tests/exe_test_export_table.c +420 -0
- libexe_python-20260705/tests/exe_test_file.c +2054 -0
- libexe_python-20260705/tests/exe_test_functions.c +562 -0
- libexe_python-20260705/tests/exe_test_functions.h +66 -0
- libexe_python-20260705/tests/exe_test_getopt.c +190 -0
- libexe_python-20260705/tests/exe_test_getopt.h +68 -0
- libexe_python-20260705/tests/exe_test_import_table.c +420 -0
- libexe_python-20260705/tests/exe_test_io_handle.c +459 -0
- libexe_python-20260705/tests/exe_test_le_header.c +317 -0
- libexe_python-20260705/tests/exe_test_libbfio.h +58 -0
- libexe_python-20260705/tests/exe_test_libcerror.h +50 -0
- libexe_python-20260705/tests/exe_test_libclocale.h +50 -0
- libexe_python-20260705/tests/exe_test_libcnotify.h +50 -0
- libexe_python-20260705/tests/exe_test_libexe.h +30 -0
- libexe_python-20260705/tests/exe_test_libuna.h +60 -0
- libexe_python-20260705/tests/exe_test_macros.h +257 -0
- libexe_python-20260705/tests/exe_test_memory.c +199 -0
- libexe_python-20260705/tests/exe_test_memory.h +66 -0
- libexe_python-20260705/tests/exe_test_mz_header.c +315 -0
- libexe_python-20260705/tests/exe_test_ne_header.c +315 -0
- libexe_python-20260705/tests/exe_test_notify.c +229 -0
- libexe_python-20260705/tests/exe_test_section.c +152 -0
- libexe_python-20260705/tests/exe_test_section_descriptor.c +439 -0
- libexe_python-20260705/tests/exe_test_section_io_handle.c +128 -0
- libexe_python-20260705/tests/exe_test_support.c +796 -0
- libexe_python-20260705/tests/exe_test_tools_info_handle.c +299 -0
- libexe_python-20260705/tests/exe_test_tools_output.c +105 -0
- libexe_python-20260705/tests/exe_test_tools_signal.c +213 -0
- libexe_python-20260705/tests/exe_test_unused.h +50 -0
- libexe_python-20260705/tests/generate_test_inputs.sh +301 -0
- libexe_python-20260705/tests/package.m4 +5 -0
- libexe_python-20260705/tests/pyexe_test_file.py +198 -0
- libexe_python-20260705/tests/pyexe_test_support.py +111 -0
- libexe_python-20260705/tests/test_library.at +41 -0
- libexe_python-20260705/tests/test_macros.at +188 -0
- libexe_python-20260705/tests/test_manpages.at +73 -0
- libexe_python-20260705/tests/test_python_module.at +145 -0
- libexe_python-20260705/tests/test_tools.at +249 -0
- libexe-20240420/AUTHORS +0 -4
- libexe-20240420/Makefile.am +0 -102
- libexe-20240420/Makefile.in +0 -1185
- libexe-20240420/PKG-INFO +0 -13
- libexe-20240420/README +0 -19
- libexe-20240420/acinclude.m4 +0 -50
- libexe-20240420/aclocal.m4 +0 -1545
- libexe-20240420/common/Makefile.in +0 -754
- libexe-20240420/common/byte_stream.h +0 -257
- libexe-20240420/common/common.h +0 -43
- libexe-20240420/common/config.h +0 -581
- libexe-20240420/common/config.h.in +0 -580
- libexe-20240420/common/config_borlandc.h +0 -26
- libexe-20240420/common/config_msc.h +0 -34
- libexe-20240420/common/config_winapi.h +0 -95
- libexe-20240420/common/file_stream.h +0 -151
- libexe-20240420/common/memory.h +0 -129
- libexe-20240420/common/narrow_string.h +0 -187
- libexe-20240420/common/system_string.h +0 -154
- libexe-20240420/common/types.h +0 -392
- libexe-20240420/common/types.h.in +0 -392
- libexe-20240420/common/wide_string.h +0 -175
- libexe-20240420/config.guess +0 -1774
- libexe-20240420/config.sub +0 -1907
- libexe-20240420/configure +0 -57055
- libexe-20240420/configure.ac +0 -228
- libexe-20240420/dpkg/changelog +0 -5
- libexe-20240420/dpkg/compat +0 -1
- libexe-20240420/dpkg/control +0 -65
- libexe-20240420/dpkg/copyright +0 -25
- libexe-20240420/dpkg/rules +0 -31
- libexe-20240420/exetools/Makefile.am +0 -54
- libexe-20240420/exetools/Makefile.in +0 -907
- libexe-20240420/exetools/exeinfo.c +0 -320
- libexe-20240420/exetools/exetools_getopt.c +0 -190
- libexe-20240420/exetools/exetools_getopt.h +0 -68
- libexe-20240420/exetools/exetools_i18n.h +0 -48
- libexe-20240420/exetools/exetools_libbfio.h +0 -58
- libexe-20240420/exetools/exetools_libcerror.h +0 -50
- libexe-20240420/exetools/exetools_libclocale.h +0 -50
- libexe-20240420/exetools/exetools_libcnotify.h +0 -50
- libexe-20240420/exetools/exetools_libexe.h +0 -30
- libexe-20240420/exetools/exetools_libfdatetime.h +0 -56
- libexe-20240420/exetools/exetools_libuna.h +0 -60
- libexe-20240420/exetools/exetools_output.c +0 -179
- libexe-20240420/exetools/exetools_output.h +0 -55
- libexe-20240420/exetools/exetools_signal.c +0 -262
- libexe-20240420/exetools/exetools_signal.h +0 -72
- libexe-20240420/exetools/exetools_unused.h +0 -50
- libexe-20240420/exetools/info_handle.c +0 -550
- libexe-20240420/exetools/info_handle.h +0 -92
- libexe-20240420/include/Makefile.in +0 -816
- libexe-20240420/include/libexe/codepage.h +0 -122
- libexe-20240420/include/libexe/definitions.h +0 -108
- libexe-20240420/include/libexe/definitions.h.in +0 -108
- libexe-20240420/include/libexe/error.h +0 -291
- libexe-20240420/include/libexe/extern.h +0 -44
- libexe-20240420/include/libexe/features.h +0 -50
- libexe-20240420/include/libexe/features.h.in +0 -50
- libexe-20240420/include/libexe/types.h +0 -212
- libexe-20240420/include/libexe/types.h.in +0 -212
- libexe-20240420/include/libexe.h +0 -489
- libexe-20240420/include/libexe.h.in +0 -489
- libexe-20240420/libbfio/Makefile.in +0 -917
- libexe-20240420/libbfio/libbfio_codepage.h +0 -90
- libexe-20240420/libbfio/libbfio_definitions.h +0 -89
- libexe-20240420/libbfio/libbfio_error.c +0 -111
- libexe-20240420/libbfio/libbfio_error.h +0 -74
- libexe-20240420/libbfio/libbfio_extern.h +0 -46
- libexe-20240420/libbfio/libbfio_file.c +0 -444
- libexe-20240420/libbfio/libbfio_file.h +0 -90
- libexe-20240420/libbfio/libbfio_file_io_handle.c +0 -1198
- libexe-20240420/libbfio/libbfio_file_io_handle.h +0 -152
- libexe-20240420/libbfio/libbfio_file_pool.c +0 -494
- libexe-20240420/libbfio/libbfio_file_pool.h +0 -81
- libexe-20240420/libbfio/libbfio_file_range.c +0 -468
- libexe-20240420/libbfio/libbfio_file_range.h +0 -104
- libexe-20240420/libbfio/libbfio_file_range_io_handle.c +0 -1158
- libexe-20240420/libbfio/libbfio_file_range_io_handle.h +0 -160
- libexe-20240420/libbfio/libbfio_handle.c +0 -2708
- libexe-20240420/libbfio/libbfio_handle.h +0 -363
- libexe-20240420/libbfio/libbfio_libcdata.h +0 -54
- libexe-20240420/libbfio/libbfio_libcerror.h +0 -50
- libexe-20240420/libbfio/libbfio_libcfile.h +0 -50
- libexe-20240420/libbfio/libbfio_libclocale.h +0 -50
- libexe-20240420/libbfio/libbfio_libcpath.h +0 -48
- libexe-20240420/libbfio/libbfio_libcthreads.h +0 -64
- libexe-20240420/libbfio/libbfio_libuna.h +0 -60
- libexe-20240420/libbfio/libbfio_memory_range.c +0 -205
- libexe-20240420/libbfio/libbfio_memory_range.h +0 -60
- libexe-20240420/libbfio/libbfio_memory_range_io_handle.c +0 -871
- libexe-20240420/libbfio/libbfio_memory_range_io_handle.h +0 -129
- libexe-20240420/libbfio/libbfio_pool.c +0 -3521
- libexe-20240420/libbfio/libbfio_pool.h +0 -275
- libexe-20240420/libbfio/libbfio_support.c +0 -93
- libexe-20240420/libbfio/libbfio_support.h +0 -58
- libexe-20240420/libbfio/libbfio_system_string.c +0 -1017
- libexe-20240420/libbfio/libbfio_system_string.h +0 -95
- libexe-20240420/libbfio/libbfio_types.h +0 -49
- libexe-20240420/libbfio/libbfio_unused.h +0 -44
- libexe-20240420/libcdata/Makefile.in +0 -896
- libexe-20240420/libcdata/libcdata_array.c +0 -2015
- libexe-20240420/libcdata/libcdata_array.h +0 -200
- libexe-20240420/libcdata/libcdata_btree.c +0 -964
- libexe-20240420/libcdata/libcdata_btree.h +0 -141
- libexe-20240420/libcdata/libcdata_btree_node.c +0 -1607
- libexe-20240420/libcdata/libcdata_btree_node.h +0 -101
- libexe-20240420/libcdata/libcdata_btree_values_list.c +0 -217
- libexe-20240420/libcdata/libcdata_btree_values_list.h +0 -55
- libexe-20240420/libcdata/libcdata_definitions.h +0 -81
- libexe-20240420/libcdata/libcdata_error.c +0 -111
- libexe-20240420/libcdata/libcdata_error.h +0 -74
- libexe-20240420/libcdata/libcdata_extern.h +0 -46
- libexe-20240420/libcdata/libcdata_libcerror.h +0 -50
- libexe-20240420/libcdata/libcdata_libcthreads.h +0 -64
- libexe-20240420/libcdata/libcdata_list.c +0 -2906
- libexe-20240420/libcdata/libcdata_list.h +0 -235
- libexe-20240420/libcdata/libcdata_list_element.c +0 -926
- libexe-20240420/libcdata/libcdata_list_element.h +0 -142
- libexe-20240420/libcdata/libcdata_range_list.c +0 -4922
- libexe-20240420/libcdata/libcdata_range_list.h +0 -382
- libexe-20240420/libcdata/libcdata_range_list_value.c +0 -429
- libexe-20240420/libcdata/libcdata_range_list_value.h +0 -100
- libexe-20240420/libcdata/libcdata_support.c +0 -39
- libexe-20240420/libcdata/libcdata_support.h +0 -47
- libexe-20240420/libcdata/libcdata_tree_node.c +0 -4216
- libexe-20240420/libcdata/libcdata_tree_node.h +0 -301
- libexe-20240420/libcdata/libcdata_types.h +0 -57
- libexe-20240420/libcdata/libcdata_unused.h +0 -44
- libexe-20240420/libcerror/Makefile.in +0 -838
- libexe-20240420/libcerror/libcerror_definitions.h +0 -326
- libexe-20240420/libcerror/libcerror_error.c +0 -827
- libexe-20240420/libcerror/libcerror_error.h +0 -125
- libexe-20240420/libcerror/libcerror_extern.h +0 -46
- libexe-20240420/libcerror/libcerror_support.c +0 -39
- libexe-20240420/libcerror/libcerror_support.h +0 -47
- libexe-20240420/libcerror/libcerror_system.c +0 -587
- libexe-20240420/libcerror/libcerror_system.h +0 -78
- libexe-20240420/libcerror/libcerror_types.h +0 -51
- libexe-20240420/libcerror/libcerror_unused.h +0 -44
- libexe-20240420/libcfile/Makefile.in +0 -865
- libexe-20240420/libcfile/libcfile_definitions.h +0 -101
- libexe-20240420/libcfile/libcfile_error.c +0 -111
- libexe-20240420/libcfile/libcfile_error.h +0 -74
- libexe-20240420/libcfile/libcfile_extern.h +0 -46
- libexe-20240420/libcfile/libcfile_file.c +0 -4570
- libexe-20240420/libcfile/libcfile_file.h +0 -273
- libexe-20240420/libcfile/libcfile_libcerror.h +0 -50
- libexe-20240420/libcfile/libcfile_libclocale.h +0 -50
- libexe-20240420/libcfile/libcfile_libcnotify.h +0 -50
- libexe-20240420/libcfile/libcfile_libuna.h +0 -60
- libexe-20240420/libcfile/libcfile_notify.c +0 -120
- libexe-20240420/libcfile/libcfile_notify.h +0 -63
- libexe-20240420/libcfile/libcfile_support.c +0 -1171
- libexe-20240420/libcfile/libcfile_support.h +0 -98
- libexe-20240420/libcfile/libcfile_system_string.c +0 -1017
- libexe-20240420/libcfile/libcfile_system_string.h +0 -95
- libexe-20240420/libcfile/libcfile_types.h +0 -47
- libexe-20240420/libcfile/libcfile_unused.h +0 -44
- libexe-20240420/libcfile/libcfile_winapi.c +0 -815
- libexe-20240420/libcfile/libcfile_winapi.h +0 -122
- libexe-20240420/libclocale/Makefile.in +0 -848
- libexe-20240420/libclocale/libclocale_codepage.c +0 -920
- libexe-20240420/libclocale/libclocale_codepage.h +0 -77
- libexe-20240420/libclocale/libclocale_definitions.h +0 -106
- libexe-20240420/libclocale/libclocale_extern.h +0 -46
- libexe-20240420/libclocale/libclocale_libcerror.h +0 -50
- libexe-20240420/libclocale/libclocale_locale.c +0 -494
- libexe-20240420/libclocale/libclocale_locale.h +0 -66
- libexe-20240420/libclocale/libclocale_support.c +0 -130
- libexe-20240420/libclocale/libclocale_support.h +0 -55
- libexe-20240420/libclocale/libclocale_unused.h +0 -44
- libexe-20240420/libclocale/libclocale_wide_string.c +0 -69
- libexe-20240420/libclocale/libclocale_wide_string.h +0 -54
- libexe-20240420/libcnotify/Makefile.in +0 -846
- libexe-20240420/libcnotify/libcnotify_definitions.h +0 -54
- libexe-20240420/libcnotify/libcnotify_extern.h +0 -46
- libexe-20240420/libcnotify/libcnotify_libcerror.h +0 -50
- libexe-20240420/libcnotify/libcnotify_print.c +0 -400
- libexe-20240420/libcnotify/libcnotify_print.h +0 -68
- libexe-20240420/libcnotify/libcnotify_stream.c +0 -182
- libexe-20240420/libcnotify/libcnotify_stream.h +0 -56
- libexe-20240420/libcnotify/libcnotify_support.c +0 -39
- libexe-20240420/libcnotify/libcnotify_support.h +0 -49
- libexe-20240420/libcnotify/libcnotify_unused.h +0 -44
- libexe-20240420/libcnotify/libcnotify_verbose.c +0 -38
- libexe-20240420/libcnotify/libcnotify_verbose.h +0 -50
- libexe-20240420/libcpath/Makefile.in +0 -850
- libexe-20240420/libcpath/libcpath_definitions.h +0 -83
- libexe-20240420/libcpath/libcpath_error.c +0 -111
- libexe-20240420/libcpath/libcpath_error.h +0 -74
- libexe-20240420/libcpath/libcpath_extern.h +0 -46
- libexe-20240420/libcpath/libcpath_libcerror.h +0 -50
- libexe-20240420/libcpath/libcpath_libclocale.h +0 -50
- libexe-20240420/libcpath/libcpath_libcsplit.h +0 -52
- libexe-20240420/libcpath/libcpath_libuna.h +0 -60
- libexe-20240420/libcpath/libcpath_path.c +0 -7174
- libexe-20240420/libcpath/libcpath_path.h +0 -273
- libexe-20240420/libcpath/libcpath_support.c +0 -93
- libexe-20240420/libcpath/libcpath_support.h +0 -58
- libexe-20240420/libcpath/libcpath_system_string.c +0 -1017
- libexe-20240420/libcpath/libcpath_system_string.h +0 -95
- libexe-20240420/libcpath/libcpath_unused.h +0 -44
- libexe-20240420/libcsplit/Makefile.in +0 -863
- libexe-20240420/libcsplit/libcsplit_definitions.h +0 -47
- libexe-20240420/libcsplit/libcsplit_error.c +0 -111
- libexe-20240420/libcsplit/libcsplit_error.h +0 -74
- libexe-20240420/libcsplit/libcsplit_extern.h +0 -46
- libexe-20240420/libcsplit/libcsplit_libcerror.h +0 -50
- libexe-20240420/libcsplit/libcsplit_narrow_split_string.c +0 -547
- libexe-20240420/libcsplit/libcsplit_narrow_split_string.h +0 -107
- libexe-20240420/libcsplit/libcsplit_narrow_string.c +0 -288
- libexe-20240420/libcsplit/libcsplit_narrow_string.h +0 -49
- libexe-20240420/libcsplit/libcsplit_support.c +0 -39
- libexe-20240420/libcsplit/libcsplit_support.h +0 -47
- libexe-20240420/libcsplit/libcsplit_types.h +0 -49
- libexe-20240420/libcsplit/libcsplit_unused.h +0 -44
- libexe-20240420/libcsplit/libcsplit_wide_split_string.c +0 -551
- libexe-20240420/libcsplit/libcsplit_wide_split_string.h +0 -111
- libexe-20240420/libcsplit/libcsplit_wide_string.c +0 -292
- libexe-20240420/libcsplit/libcsplit_wide_string.h +0 -53
- libexe-20240420/libcthreads/Makefile.in +0 -898
- libexe-20240420/libcthreads/libcthreads_condition.c +0 -735
- libexe-20240420/libcthreads/libcthreads_condition.h +0 -120
- libexe-20240420/libcthreads/libcthreads_definitions.h +0 -84
- libexe-20240420/libcthreads/libcthreads_error.c +0 -111
- libexe-20240420/libcthreads/libcthreads_error.h +0 -74
- libexe-20240420/libcthreads/libcthreads_extern.h +0 -46
- libexe-20240420/libcthreads/libcthreads_libcerror.h +0 -50
- libexe-20240420/libcthreads/libcthreads_lock.c +0 -391
- libexe-20240420/libcthreads/libcthreads_lock.h +0 -88
- libexe-20240420/libcthreads/libcthreads_mutex.c +0 -601
- libexe-20240420/libcthreads/libcthreads_mutex.h +0 -98
- libexe-20240420/libcthreads/libcthreads_queue.c +0 -1150
- libexe-20240420/libcthreads/libcthreads_queue.h +0 -136
- libexe-20240420/libcthreads/libcthreads_read_write_lock.c +0 -690
- libexe-20240420/libcthreads/libcthreads_read_write_lock.h +0 -119
- libexe-20240420/libcthreads/libcthreads_repeating_thread.c +0 -644
- libexe-20240420/libcthreads/libcthreads_repeating_thread.h +0 -115
- libexe-20240420/libcthreads/libcthreads_support.c +0 -39
- libexe-20240420/libcthreads/libcthreads_support.h +0 -47
- libexe-20240420/libcthreads/libcthreads_thread.c +0 -405
- libexe-20240420/libcthreads/libcthreads_thread.h +0 -95
- libexe-20240420/libcthreads/libcthreads_thread_attributes.c +0 -149
- libexe-20240420/libcthreads/libcthreads_thread_attributes.h +0 -78
- libexe-20240420/libcthreads/libcthreads_thread_pool.c +0 -1721
- libexe-20240420/libcthreads/libcthreads_thread_pool.h +0 -177
- libexe-20240420/libcthreads/libcthreads_types.h +0 -63
- libexe-20240420/libcthreads/libcthreads_unused.h +0 -44
- libexe-20240420/libexe/Makefile.in +0 -1029
- libexe-20240420/libexe/exe_file_header.h +0 -508
- libexe-20240420/libexe/exe_le_header.h +0 -52
- libexe-20240420/libexe/exe_mz_header.h +0 -124
- libexe-20240420/libexe/exe_ne_header.h +0 -56
- libexe-20240420/libexe/exe_pe_header.h +0 -48
- libexe-20240420/libexe/exe_section_table.h +0 -93
- libexe-20240420/libexe/libexe.c +0 -80
- libexe-20240420/libexe/libexe.rc +0 -38
- libexe-20240420/libexe/libexe.rc.in +0 -38
- libexe-20240420/libexe/libexe_codepage.h +0 -90
- libexe-20240420/libexe/libexe_coff_header.c +0 -358
- libexe-20240420/libexe/libexe_coff_header.h +0 -77
- libexe-20240420/libexe/libexe_coff_optional_header.c +0 -1257
- libexe-20240420/libexe/libexe_coff_optional_header.h +0 -72
- libexe-20240420/libexe/libexe_data_directory_descriptor.h +0 -52
- libexe-20240420/libexe/libexe_debug.c +0 -532
- libexe-20240420/libexe/libexe_debug.h +0 -67
- libexe-20240420/libexe/libexe_debug_data.c +0 -246
- libexe-20240420/libexe/libexe_debug_data.h +0 -64
- libexe-20240420/libexe/libexe_definitions.h +0 -163
- libexe-20240420/libexe/libexe_definitions.h.in +0 -163
- libexe-20240420/libexe/libexe_error.c +0 -111
- libexe-20240420/libexe/libexe_error.h +0 -74
- libexe-20240420/libexe/libexe_export_table.c +0 -248
- libexe-20240420/libexe/libexe_export_table.h +0 -64
- libexe-20240420/libexe/libexe_extern.h +0 -46
- libexe-20240420/libexe/libexe_file.c +0 -1693
- libexe-20240420/libexe/libexe_file.h +0 -165
- libexe-20240420/libexe/libexe_import_table.c +0 -248
- libexe-20240420/libexe/libexe_import_table.h +0 -64
- libexe-20240420/libexe/libexe_io_handle.c +0 -1265
- libexe-20240420/libexe/libexe_io_handle.h +0 -142
- libexe-20240420/libexe/libexe_le_header.c +0 -297
- libexe-20240420/libexe/libexe_le_header.h +0 -69
- libexe-20240420/libexe/libexe_libbfio.h +0 -58
- libexe-20240420/libexe/libexe_libcdata.h +0 -54
- libexe-20240420/libexe/libexe_libcerror.h +0 -50
- libexe-20240420/libexe/libexe_libclocale.h +0 -50
- libexe-20240420/libexe/libexe_libcnotify.h +0 -50
- libexe-20240420/libexe/libexe_libfcache.h +0 -50
- libexe-20240420/libexe/libexe_libfdata.h +0 -54
- libexe-20240420/libexe/libexe_libfdatetime.h +0 -56
- libexe-20240420/libexe/libexe_libuna.h +0 -60
- libexe-20240420/libexe/libexe_mz_header.c +0 -440
- libexe-20240420/libexe/libexe_mz_header.h +0 -69
- libexe-20240420/libexe/libexe_ne_header.c +0 -297
- libexe-20240420/libexe/libexe_ne_header.h +0 -69
- libexe-20240420/libexe/libexe_notify.c +0 -120
- libexe-20240420/libexe/libexe_notify.h +0 -63
- libexe-20240420/libexe/libexe_section.c +0 -996
- libexe-20240420/libexe/libexe_section.h +0 -164
- libexe-20240420/libexe/libexe_section_descriptor.c +0 -320
- libexe-20240420/libexe/libexe_section_descriptor.h +0 -87
- libexe-20240420/libexe/libexe_section_io_handle.c +0 -651
- libexe-20240420/libexe/libexe_section_io_handle.h +0 -111
- libexe-20240420/libexe/libexe_support.c +0 -430
- libexe-20240420/libexe/libexe_support.h +0 -82
- libexe-20240420/libexe/libexe_types.h +0 -49
- libexe-20240420/libexe/libexe_unused.h +0 -44
- libexe-20240420/libexe.spec +0 -99
- libexe-20240420/libfcache/Makefile.in +0 -859
- libexe-20240420/libfcache/libfcache_cache.c +0 -1118
- libexe-20240420/libfcache/libfcache_cache.h +0 -149
- libexe-20240420/libfcache/libfcache_cache_value.c +0 -502
- libexe-20240420/libfcache/libfcache_cache_value.h +0 -132
- libexe-20240420/libfcache/libfcache_date_time.c +0 -92
- libexe-20240420/libfcache/libfcache_date_time.h +0 -45
- libexe-20240420/libfcache/libfcache_definitions.h +0 -58
- libexe-20240420/libfcache/libfcache_error.c +0 -111
- libexe-20240420/libfcache/libfcache_error.h +0 -74
- libexe-20240420/libfcache/libfcache_extern.h +0 -46
- libexe-20240420/libfcache/libfcache_libcdata.h +0 -54
- libexe-20240420/libfcache/libfcache_libcerror.h +0 -50
- libexe-20240420/libfcache/libfcache_support.c +0 -41
- libexe-20240420/libfcache/libfcache_support.h +0 -47
- libexe-20240420/libfcache/libfcache_types.h +0 -49
- libexe-20240420/libfcache/libfcache_unused.h +0 -44
- libexe-20240420/libfdata/Makefile.in +0 -912
- libexe-20240420/libfdata/libfdata_area.c +0 -1482
- libexe-20240420/libfdata/libfdata_area.h +0 -278
- libexe-20240420/libfdata/libfdata_cache.c +0 -59
- libexe-20240420/libfdata/libfdata_cache.h +0 -56
- libexe-20240420/libfdata/libfdata_definitions.h +0 -249
- libexe-20240420/libfdata/libfdata_error.c +0 -111
- libexe-20240420/libfdata/libfdata_error.h +0 -74
- libexe-20240420/libfdata/libfdata_extern.h +0 -46
- libexe-20240420/libfdata/libfdata_libcdata.h +0 -54
- libexe-20240420/libfdata/libfdata_libcerror.h +0 -50
- libexe-20240420/libfdata/libfdata_libcnotify.h +0 -50
- libexe-20240420/libfdata/libfdata_libfcache.h +0 -50
- libexe-20240420/libfdata/libfdata_list.c +0 -4426
- libexe-20240420/libfdata/libfdata_list.h +0 -452
- libexe-20240420/libfdata/libfdata_list_element.c +0 -824
- libexe-20240420/libfdata/libfdata_list_element.h +0 -159
- libexe-20240420/libfdata/libfdata_mapped_range.c +0 -312
- libexe-20240420/libfdata/libfdata_mapped_range.h +0 -77
- libexe-20240420/libfdata/libfdata_notify.c +0 -120
- libexe-20240420/libfdata/libfdata_notify.h +0 -63
- libexe-20240420/libfdata/libfdata_range.c +0 -358
- libexe-20240420/libfdata/libfdata_range.h +0 -94
- libexe-20240420/libfdata/libfdata_range_list.c +0 -1196
- libexe-20240420/libfdata/libfdata_range_list.h +0 -214
- libexe-20240420/libfdata/libfdata_segments_array.c +0 -914
- libexe-20240420/libfdata/libfdata_segments_array.h +0 -94
- libexe-20240420/libfdata/libfdata_stream.c +0 -2582
- libexe-20240420/libfdata/libfdata_stream.h +0 -363
- libexe-20240420/libfdata/libfdata_support.c +0 -41
- libexe-20240420/libfdata/libfdata_support.h +0 -47
- libexe-20240420/libfdata/libfdata_types.h +0 -59
- libexe-20240420/libfdata/libfdata_unused.h +0 -44
- libexe-20240420/libfdata/libfdata_vector.c +0 -1932
- libexe-20240420/libfdata/libfdata_vector.h +0 -295
- libexe-20240420/libfdatetime/Makefile.in +0 -890
- libexe-20240420/libfdatetime/libfdatetime_date_time_values.c +0 -1906
- libexe-20240420/libfdatetime/libfdatetime_date_time_values.h +0 -121
- libexe-20240420/libfdatetime/libfdatetime_definitions.h +0 -121
- libexe-20240420/libfdatetime/libfdatetime_error.c +0 -111
- libexe-20240420/libfdatetime/libfdatetime_error.h +0 -74
- libexe-20240420/libfdatetime/libfdatetime_extern.h +0 -46
- libexe-20240420/libfdatetime/libfdatetime_fat_date_time.c +0 -1258
- libexe-20240420/libfdatetime/libfdatetime_fat_date_time.h +0 -172
- libexe-20240420/libfdatetime/libfdatetime_filetime.c +0 -1465
- libexe-20240420/libfdatetime/libfdatetime_filetime.h +0 -177
- libexe-20240420/libfdatetime/libfdatetime_floatingtime.c +0 -1333
- libexe-20240420/libfdatetime/libfdatetime_floatingtime.h +0 -168
- libexe-20240420/libfdatetime/libfdatetime_hfs_time.c +0 -1329
- libexe-20240420/libfdatetime/libfdatetime_hfs_time.h +0 -166
- libexe-20240420/libfdatetime/libfdatetime_libcerror.h +0 -50
- libexe-20240420/libfdatetime/libfdatetime_nsf_timedate.c +0 -1373
- libexe-20240420/libfdatetime/libfdatetime_nsf_timedate.h +0 -177
- libexe-20240420/libfdatetime/libfdatetime_posix_time.c +0 -1842
- libexe-20240420/libfdatetime/libfdatetime_posix_time.h +0 -189
- libexe-20240420/libfdatetime/libfdatetime_support.c +0 -41
- libexe-20240420/libfdatetime/libfdatetime_support.h +0 -47
- libexe-20240420/libfdatetime/libfdatetime_systemtime.c +0 -1779
- libexe-20240420/libfdatetime/libfdatetime_systemtime.h +0 -180
- libexe-20240420/libfdatetime/libfdatetime_types.h +0 -63
- libexe-20240420/libfdatetime/libfdatetime_unused.h +0 -44
- libexe-20240420/libuna/Makefile.in +0 -1259
- libexe-20240420/libuna/libuna_base16_stream.c +0 -1511
- libexe-20240420/libuna/libuna_base16_stream.h +0 -93
- libexe-20240420/libuna/libuna_base32_stream.c +0 -3035
- libexe-20240420/libuna/libuna_base32_stream.h +0 -131
- libexe-20240420/libuna/libuna_base64_stream.c +0 -2832
- libexe-20240420/libuna/libuna_base64_stream.h +0 -131
- libexe-20240420/libuna/libuna_byte_stream.c +0 -633
- libexe-20240420/libuna/libuna_byte_stream.h +0 -104
- libexe-20240420/libuna/libuna_codepage_iso_8859_10.c +0 -73
- libexe-20240420/libuna/libuna_codepage_iso_8859_10.h +0 -48
- libexe-20240420/libuna/libuna_codepage_iso_8859_13.c +0 -81
- libexe-20240420/libuna/libuna_codepage_iso_8859_13.h +0 -48
- libexe-20240420/libuna/libuna_codepage_iso_8859_14.c +0 -66
- libexe-20240420/libuna/libuna_codepage_iso_8859_14.h +0 -51
- libexe-20240420/libuna/libuna_codepage_iso_8859_15.c +0 -46
- libexe-20240420/libuna/libuna_codepage_iso_8859_15.h +0 -45
- libexe-20240420/libuna/libuna_codepage_iso_8859_16.c +0 -78
- libexe-20240420/libuna/libuna_codepage_iso_8859_16.h +0 -57
- libexe-20240420/libuna/libuna_codepage_iso_8859_2.c +0 -82
- libexe-20240420/libuna/libuna_codepage_iso_8859_2.h +0 -51
- libexe-20240420/libuna/libuna_codepage_iso_8859_3.c +0 -79
- libexe-20240420/libuna/libuna_codepage_iso_8859_3.h +0 -57
- libexe-20240420/libuna/libuna_codepage_iso_8859_4.c +0 -80
- libexe-20240420/libuna/libuna_codepage_iso_8859_4.h +0 -48
- libexe-20240420/libuna/libuna_codepage_iso_8859_5.c +0 -62
- libexe-20240420/libuna/libuna_codepage_iso_8859_5.h +0 -45
- libexe-20240420/libuna/libuna_codepage_iso_8859_6.c +0 -58
- libexe-20240420/libuna/libuna_codepage_iso_8859_6.h +0 -45
- libexe-20240420/libuna/libuna_codepage_iso_8859_7.c +0 -66
- libexe-20240420/libuna/libuna_codepage_iso_8859_7.h +0 -48
- libexe-20240420/libuna/libuna_codepage_iso_8859_8.c +0 -61
- libexe-20240420/libuna/libuna_codepage_iso_8859_8.h +0 -48
- libexe-20240420/libuna/libuna_codepage_iso_8859_9.c +0 -50
- libexe-20240420/libuna/libuna_codepage_iso_8859_9.h +0 -45
- libexe-20240420/libuna/libuna_codepage_koi8_r.c +0 -392
- libexe-20240420/libuna/libuna_codepage_koi8_r.h +0 -54
- libexe-20240420/libuna/libuna_codepage_koi8_u.c +0 -424
- libexe-20240420/libuna/libuna_codepage_koi8_u.h +0 -54
- libexe-20240420/libuna/libuna_codepage_mac_arabic.c +0 -352
- libexe-20240420/libuna/libuna_codepage_mac_arabic.h +0 -54
- libexe-20240420/libuna/libuna_codepage_mac_celtic.c +0 -395
- libexe-20240420/libuna/libuna_codepage_mac_celtic.h +0 -54
- libexe-20240420/libuna/libuna_codepage_mac_centraleurroman.c +0 -319
- libexe-20240420/libuna/libuna_codepage_mac_centraleurroman.h +0 -54
- libexe-20240420/libuna/libuna_codepage_mac_croatian.c +0 -378
- libexe-20240420/libuna/libuna_codepage_mac_croatian.h +0 -54
- libexe-20240420/libuna/libuna_codepage_mac_cyrillic.c +0 -325
- libexe-20240420/libuna/libuna_codepage_mac_cyrillic.h +0 -54
- libexe-20240420/libuna/libuna_codepage_mac_dingbats.c +0 -347
- libexe-20240420/libuna/libuna_codepage_mac_dingbats.h +0 -54
- libexe-20240420/libuna/libuna_codepage_mac_farsi.c +0 -372
- libexe-20240420/libuna/libuna_codepage_mac_farsi.h +0 -54
- libexe-20240420/libuna/libuna_codepage_mac_gaelic.c +0 -437
- libexe-20240420/libuna/libuna_codepage_mac_gaelic.h +0 -54
- libexe-20240420/libuna/libuna_codepage_mac_greek.c +0 -305
- libexe-20240420/libuna/libuna_codepage_mac_greek.h +0 -54
- libexe-20240420/libuna/libuna_codepage_mac_icelandic.c +0 -381
- libexe-20240420/libuna/libuna_codepage_mac_icelandic.h +0 -54
- libexe-20240420/libuna/libuna_codepage_mac_inuit.c +0 -380
- libexe-20240420/libuna/libuna_codepage_mac_inuit.h +0 -54
- libexe-20240420/libuna/libuna_codepage_mac_roman.c +0 -387
- libexe-20240420/libuna/libuna_codepage_mac_roman.h +0 -54
- libexe-20240420/libuna/libuna_codepage_mac_romanian.c +0 -396
- libexe-20240420/libuna/libuna_codepage_mac_romanian.h +0 -54
- libexe-20240420/libuna/libuna_codepage_mac_russian.c +0 -317
- libexe-20240420/libuna/libuna_codepage_mac_russian.h +0 -54
- libexe-20240420/libuna/libuna_codepage_mac_symbol.c +0 -537
- libexe-20240420/libuna/libuna_codepage_mac_symbol.h +0 -59
- libexe-20240420/libuna/libuna_codepage_mac_thai.c +0 -330
- libexe-20240420/libuna/libuna_codepage_mac_thai.h +0 -59
- libexe-20240420/libuna/libuna_codepage_mac_turkish.c +0 -397
- libexe-20240420/libuna/libuna_codepage_mac_turkish.h +0 -54
- libexe-20240420/libuna/libuna_codepage_mac_ukrainian.c +0 -321
- libexe-20240420/libuna/libuna_codepage_mac_ukrainian.h +0 -54
- libexe-20240420/libuna/libuna_codepage_windows_1250.c +0 -313
- libexe-20240420/libuna/libuna_codepage_windows_1250.h +0 -54
- libexe-20240420/libuna/libuna_codepage_windows_1251.c +0 -301
- libexe-20240420/libuna/libuna_codepage_windows_1251.h +0 -54
- libexe-20240420/libuna/libuna_codepage_windows_1252.c +0 -287
- libexe-20240420/libuna/libuna_codepage_windows_1252.h +0 -54
- libexe-20240420/libuna/libuna_codepage_windows_1253.c +0 -291
- libexe-20240420/libuna/libuna_codepage_windows_1253.h +0 -54
- libexe-20240420/libuna/libuna_codepage_windows_1254.c +0 -348
- libexe-20240420/libuna/libuna_codepage_windows_1254.h +0 -54
- libexe-20240420/libuna/libuna_codepage_windows_1255.c +0 -328
- libexe-20240420/libuna/libuna_codepage_windows_1255.h +0 -54
- libexe-20240420/libuna/libuna_codepage_windows_1256.c +0 -372
- libexe-20240420/libuna/libuna_codepage_windows_1256.h +0 -54
- libexe-20240420/libuna/libuna_codepage_windows_1257.c +0 -303
- libexe-20240420/libuna/libuna_codepage_windows_1257.h +0 -54
- libexe-20240420/libuna/libuna_codepage_windows_1258.c +0 -349
- libexe-20240420/libuna/libuna_codepage_windows_1258.h +0 -54
- libexe-20240420/libuna/libuna_codepage_windows_874.c +0 -274
- libexe-20240420/libuna/libuna_codepage_windows_874.h +0 -54
- libexe-20240420/libuna/libuna_codepage_windows_932.c +0 -4913
- libexe-20240420/libuna/libuna_codepage_windows_932.h +0 -59
- libexe-20240420/libuna/libuna_codepage_windows_936.c +0 -7371
- libexe-20240420/libuna/libuna_codepage_windows_936.h +0 -59
- libexe-20240420/libuna/libuna_codepage_windows_949.c +0 -8168
- libexe-20240420/libuna/libuna_codepage_windows_949.h +0 -59
- libexe-20240420/libuna/libuna_codepage_windows_950.c +0 -6390
- libexe-20240420/libuna/libuna_codepage_windows_950.h +0 -59
- libexe-20240420/libuna/libuna_definitions.h +0 -436
- libexe-20240420/libuna/libuna_error.c +0 -111
- libexe-20240420/libuna/libuna_error.h +0 -74
- libexe-20240420/libuna/libuna_extern.h +0 -46
- libexe-20240420/libuna/libuna_libcerror.h +0 -50
- libexe-20240420/libuna/libuna_scsu.c +0 -64
- libexe-20240420/libuna/libuna_scsu.h +0 -45
- libexe-20240420/libuna/libuna_support.c +0 -39
- libexe-20240420/libuna/libuna_support.h +0 -49
- libexe-20240420/libuna/libuna_types.h +0 -53
- libexe-20240420/libuna/libuna_unicode_character.c +0 -5784
- libexe-20240420/libuna/libuna_unicode_character.h +0 -260
- libexe-20240420/libuna/libuna_unused.h +0 -44
- libexe-20240420/libuna/libuna_url_stream.c +0 -584
- libexe-20240420/libuna/libuna_url_stream.h +0 -71
- libexe-20240420/libuna/libuna_utf16_stream.c +0 -815
- libexe-20240420/libuna/libuna_utf16_stream.h +0 -109
- libexe-20240420/libuna/libuna_utf16_string.c +0 -3950
- libexe-20240420/libuna/libuna_utf16_string.h +0 -325
- libexe-20240420/libuna/libuna_utf32_stream.c +0 -819
- libexe-20240420/libuna/libuna_utf32_stream.h +0 -109
- libexe-20240420/libuna/libuna_utf32_string.c +0 -3808
- libexe-20240420/libuna/libuna_utf32_string.h +0 -321
- libexe-20240420/libuna/libuna_utf7_stream.c +0 -628
- libexe-20240420/libuna/libuna_utf7_stream.h +0 -98
- libexe-20240420/libuna/libuna_utf8_stream.c +0 -748
- libexe-20240420/libuna/libuna_utf8_stream.h +0 -105
- libexe-20240420/libuna/libuna_utf8_string.c +0 -4092
- libexe-20240420/libuna/libuna_utf8_string.h +0 -329
- libexe-20240420/ltmain.sh +0 -11429
- libexe-20240420/m4/common.m4 +0 -578
- libexe-20240420/m4/libbfio.m4 +0 -422
- libexe-20240420/m4/libcdata.m4 +0 -599
- libexe-20240420/m4/libcerror.m4 +0 -237
- libexe-20240420/m4/libcfile.m4 +0 -429
- libexe-20240420/m4/libclocale.m4 +0 -291
- libexe-20240420/m4/libcnotify.m4 +0 -209
- libexe-20240420/m4/libcpath.m4 +0 -344
- libexe-20240420/m4/libcsplit.m4 +0 -249
- libexe-20240420/m4/libcthreads.m4 +0 -385
- libexe-20240420/m4/libfcache.m4 +0 -266
- libexe-20240420/m4/libfdata.m4 +0 -555
- libexe-20240420/m4/libfdatetime.m4 +0 -560
- libexe-20240420/m4/libtool.m4 +0 -8403
- libexe-20240420/m4/libuna.m4 +0 -1044
- libexe-20240420/m4/pthread.m4 +0 -196
- libexe-20240420/m4/python.m4 +0 -208
- libexe-20240420/m4/tests.m4 +0 -33
- libexe-20240420/m4/types.m4 +0 -133
- libexe-20240420/manuals/Makefile.am +0 -12
- libexe-20240420/manuals/Makefile.in +0 -783
- libexe-20240420/manuals/exeinfo.1 +0 -87
- libexe-20240420/manuals/libexe.3 +0 -149
- libexe-20240420/msvscpp/Makefile.in +0 -693
- libexe-20240420/msvscpp/libexe.sln +0 -417
- libexe-20240420/msvscpp/pyexe/pyexe.vcproj +0 -284
- libexe-20240420/ossfuzz/Makefile.in +0 -901
- libexe-20240420/ossfuzz/file_fuzzer.cc +0 -99
- libexe-20240420/ossfuzz/ossfuzz_libbfio.h +0 -58
- libexe-20240420/ossfuzz/ossfuzz_libexe.h +0 -30
- libexe-20240420/po/Makevars +0 -45
- libexe-20240420/pyexe/Makefile.am +0 -53
- libexe-20240420/pyexe/Makefile.in +0 -1017
- libexe-20240420/pyexe/pyexe.c +0 -678
- libexe-20240420/pyexe/pyexe.h +0 -71
- libexe-20240420/pyexe/pyexe_codepage.c +0 -138
- libexe-20240420/pyexe/pyexe_codepage.h +0 -42
- libexe-20240420/pyexe/pyexe_datetime.c +0 -691
- libexe-20240420/pyexe/pyexe_datetime.h +0 -65
- libexe-20240420/pyexe/pyexe_error.c +0 -422
- libexe-20240420/pyexe/pyexe_error.h +0 -60
- libexe-20240420/pyexe/pyexe_file.c +0 -1465
- libexe-20240420/pyexe/pyexe_file.h +0 -125
- libexe-20240420/pyexe/pyexe_file_object_io_handle.c +0 -1524
- libexe-20240420/pyexe/pyexe_file_object_io_handle.h +0 -141
- libexe-20240420/pyexe/pyexe_integer.c +0 -399
- libexe-20240420/pyexe/pyexe_integer.h +0 -56
- libexe-20240420/pyexe/pyexe_libbfio.h +0 -54
- libexe-20240420/pyexe/pyexe_libcerror.h +0 -50
- libexe-20240420/pyexe/pyexe_libclocale.h +0 -50
- libexe-20240420/pyexe/pyexe_libexe.h +0 -30
- libexe-20240420/pyexe/pyexe_python.h +0 -83
- libexe-20240420/pyexe/pyexe_section.c +0 -1055
- libexe-20240420/pyexe/pyexe_section.h +0 -106
- libexe-20240420/pyexe/pyexe_sections.c +0 -452
- libexe-20240420/pyexe/pyexe_sections.h +0 -95
- libexe-20240420/pyexe/pyexe_unused.h +0 -44
- libexe-20240420/pyproject.toml +0 -4
- libexe-20240420/setup.cfg +0 -16
- libexe-20240420/setup.cfg.in +0 -16
- libexe-20240420/setup.py +0 -293
- libexe-20240420/test-driver +0 -153
- libexe-20240420/tests/Makefile.am +0 -337
- libexe-20240420/tests/Makefile.in +0 -1822
- libexe-20240420/tests/exe_test_coff_header.c +0 -313
- libexe-20240420/tests/exe_test_coff_optional_header.c +0 -313
- libexe-20240420/tests/exe_test_data_directory_descriptor.c +0 -56
- libexe-20240420/tests/exe_test_debug_data.c +0 -416
- libexe-20240420/tests/exe_test_error.c +0 -150
- libexe-20240420/tests/exe_test_export_table.c +0 -416
- libexe-20240420/tests/exe_test_file.c +0 -2054
- libexe-20240420/tests/exe_test_functions.c +0 -562
- libexe-20240420/tests/exe_test_functions.h +0 -66
- libexe-20240420/tests/exe_test_getopt.c +0 -190
- libexe-20240420/tests/exe_test_getopt.h +0 -68
- libexe-20240420/tests/exe_test_import_table.c +0 -416
- libexe-20240420/tests/exe_test_io_handle.c +0 -455
- libexe-20240420/tests/exe_test_le_header.c +0 -313
- libexe-20240420/tests/exe_test_libbfio.h +0 -58
- libexe-20240420/tests/exe_test_libcerror.h +0 -50
- libexe-20240420/tests/exe_test_libclocale.h +0 -50
- libexe-20240420/tests/exe_test_libcnotify.h +0 -50
- libexe-20240420/tests/exe_test_libexe.h +0 -30
- libexe-20240420/tests/exe_test_libuna.h +0 -60
- libexe-20240420/tests/exe_test_macros.h +0 -257
- libexe-20240420/tests/exe_test_memory.c +0 -177
- libexe-20240420/tests/exe_test_memory.h +0 -52
- libexe-20240420/tests/exe_test_mz_header.c +0 -311
- libexe-20240420/tests/exe_test_ne_header.c +0 -311
- libexe-20240420/tests/exe_test_notify.c +0 -229
- libexe-20240420/tests/exe_test_section.c +0 -152
- libexe-20240420/tests/exe_test_section_descriptor.c +0 -435
- libexe-20240420/tests/exe_test_section_io_handle.c +0 -124
- libexe-20240420/tests/exe_test_support.c +0 -796
- libexe-20240420/tests/exe_test_tools_info_handle.c +0 -299
- libexe-20240420/tests/exe_test_tools_output.c +0 -105
- libexe-20240420/tests/exe_test_tools_signal.c +0 -213
- libexe-20240420/tests/exe_test_unused.h +0 -50
- libexe-20240420/tests/pyexe_test_file.py +0 -198
- libexe-20240420/tests/pyexe_test_support.py +0 -111
- libexe-20240420/tests/test_exeinfo.sh +0 -146
- libexe-20240420/tests/test_library.sh +0 -193
- libexe-20240420/tests/test_manpage.sh +0 -98
- libexe-20240420/tests/test_python_module.sh +0 -195
- libexe-20240420/tests/test_runner.sh +0 -1148
- libexe-20240420/tests/test_tools.sh +0 -193
- {libexe-20240420 → libexe_python-20260705}/ABOUT-NLS +0 -0
- {libexe-20240420 → libexe_python-20260705}/COPYING +0 -0
- {libexe-20240420 → libexe_python-20260705}/COPYING.LESSER +0 -0
- {libexe-20240420 → libexe_python-20260705}/ChangeLog +0 -0
- {libexe-20240420 → libexe_python-20260705}/NEWS +0 -0
- {libexe-20240420 → libexe_python-20260705}/common/Makefile.am +0 -0
- {libexe-20240420 → libexe_python-20260705}/compile +0 -0
- {libexe-20240420 → libexe_python-20260705}/config.rpath +0 -0
- {libexe-20240420 → libexe_python-20260705}/depcomp +0 -0
- {libexe-20240420 → libexe_python-20260705}/dpkg/changelog.in +0 -0
- {libexe-20240420 → libexe_python-20260705}/dpkg/libexe-dev.install +0 -0
- {libexe-20240420 → libexe_python-20260705}/dpkg/libexe-python3.install +0 -0
- {libexe-20240420 → libexe_python-20260705}/dpkg/libexe-tools.install +0 -0
- {libexe-20240420 → libexe_python-20260705}/dpkg/libexe.install +0 -0
- {libexe-20240420 → libexe_python-20260705}/dpkg/source/format +0 -0
- {libexe-20240420 → libexe_python-20260705}/include/Makefile.am +0 -0
- {libexe-20240420 → libexe_python-20260705}/install-sh +0 -0
- {libexe-20240420 → libexe_python-20260705}/libbfio/Makefile.am +0 -0
- {libexe-20240420 → libexe_python-20260705}/libcdata/Makefile.am +0 -0
- {libexe-20240420 → libexe_python-20260705}/libcerror/Makefile.am +0 -0
- {libexe-20240420 → libexe_python-20260705}/libcfile/Makefile.am +0 -0
- {libexe-20240420 → libexe_python-20260705}/libclocale/Makefile.am +0 -0
- {libexe-20240420 → libexe_python-20260705}/libcnotify/Makefile.am +0 -0
- {libexe-20240420 → libexe_python-20260705}/libcpath/Makefile.am +0 -0
- {libexe-20240420 → libexe_python-20260705}/libcsplit/Makefile.am +0 -0
- {libexe-20240420 → libexe_python-20260705}/libcthreads/Makefile.am +0 -0
- {libexe-20240420 → libexe_python-20260705}/libexe/Makefile.am +0 -0
- {libexe-20240420 → libexe_python-20260705}/libexe.pc.in +0 -0
- {libexe-20240420 → libexe_python-20260705}/libexe.spec.in +0 -0
- {libexe-20240420 → libexe_python-20260705}/libfcache/Makefile.am +0 -0
- {libexe-20240420 → libexe_python-20260705}/libfdata/Makefile.am +0 -0
- {libexe-20240420 → libexe_python-20260705}/libfdatetime/Makefile.am +0 -0
- {libexe-20240420 → libexe_python-20260705}/libuna/Makefile.am +0 -0
- {libexe-20240420 → libexe_python-20260705}/m4/gettext.m4 +0 -0
- {libexe-20240420 → libexe_python-20260705}/m4/host-cpu-c-abi.m4 +0 -0
- {libexe-20240420 → libexe_python-20260705}/m4/iconv.m4 +0 -0
- {libexe-20240420 → libexe_python-20260705}/m4/intlmacosx.m4 +0 -0
- {libexe-20240420 → libexe_python-20260705}/m4/lib-ld.m4 +0 -0
- {libexe-20240420 → libexe_python-20260705}/m4/lib-link.m4 +0 -0
- {libexe-20240420 → libexe_python-20260705}/m4/lib-prefix.m4 +0 -0
- {libexe-20240420 → libexe_python-20260705}/m4/nls.m4 +0 -0
- {libexe-20240420 → libexe_python-20260705}/m4/po.m4 +0 -0
- {libexe-20240420 → libexe_python-20260705}/m4/progtest.m4 +0 -0
- {libexe-20240420 → libexe_python-20260705}/missing +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/Makefile.am +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_coff_header/exe_test_coff_header.vcproj +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_coff_optional_header/exe_test_coff_optional_header.vcproj +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_data_directory_descriptor/exe_test_data_directory_descriptor.vcproj +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_debug_data/exe_test_debug_data.vcproj +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_error/exe_test_error.vcproj +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_export_table/exe_test_export_table.vcproj +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_file/exe_test_file.vcproj +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_import_table/exe_test_import_table.vcproj +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_io_handle/exe_test_io_handle.vcproj +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_le_header/exe_test_le_header.vcproj +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_mz_header/exe_test_mz_header.vcproj +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_ne_header/exe_test_ne_header.vcproj +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_notify/exe_test_notify.vcproj +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_section/exe_test_section.vcproj +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_section_descriptor/exe_test_section_descriptor.vcproj +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_section_io_handle/exe_test_section_io_handle.vcproj +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_support/exe_test_support.vcproj +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_tools_info_handle/exe_test_tools_info_handle.vcproj +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_tools_output/exe_test_tools_output.vcproj +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_tools_signal/exe_test_tools_signal.vcproj +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/exeinfo/exeinfo.vcproj +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/libbfio/libbfio.vcproj +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/libcdata/libcdata.vcproj +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/libcerror/libcerror.vcproj +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/libcfile/libcfile.vcproj +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/libclocale/libclocale.vcproj +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/libcnotify/libcnotify.vcproj +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/libcpath/libcpath.vcproj +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/libcsplit/libcsplit.vcproj +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/libcthreads/libcthreads.vcproj +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/libexe/libexe.vcproj +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/libfcache/libfcache.vcproj +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/libfdata/libfdata.vcproj +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/libfdatetime/libfdatetime.vcproj +0 -0
- {libexe-20240420 → libexe_python-20260705}/msvscpp/libuna/libuna.vcproj +0 -0
- {libexe-20240420 → libexe_python-20260705}/ossfuzz/Makefile.am +0 -0
- {libexe-20240420 → libexe_python-20260705}/po/ChangeLog +0 -0
- {libexe-20240420 → libexe_python-20260705}/po/Makefile.in.in +0 -0
- {libexe-20240420 → libexe_python-20260705}/po/Makevars.in +0 -0
- {libexe-20240420 → libexe_python-20260705}/po/POTFILES.in +0 -0
- {libexe-20240420 → libexe_python-20260705}/po/Rules-quot +0 -0
- {libexe-20240420 → libexe_python-20260705}/po/boldquot.sed +0 -0
- {libexe-20240420 → libexe_python-20260705}/po/en@boldquot.header +0 -0
- {libexe-20240420 → libexe_python-20260705}/po/en@quot.header +0 -0
- {libexe-20240420 → libexe_python-20260705}/po/insert-header.sin +0 -0
- {libexe-20240420 → libexe_python-20260705}/po/quot.sed +0 -0
- {libexe-20240420 → libexe_python-20260705}/po/remove-potcdate.sin +0 -0
|
File without changes
|
|
@@ -0,0 +1,104 @@
|
|
|
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
|
+
libexe \
|
|
20
|
+
exetools \
|
|
21
|
+
pyexe \
|
|
22
|
+
po \
|
|
23
|
+
manuals \
|
|
24
|
+
tests \
|
|
25
|
+
ossfuzz \
|
|
26
|
+
msvscpp
|
|
27
|
+
|
|
28
|
+
DPKG_FILES = \
|
|
29
|
+
dpkg/changelog \
|
|
30
|
+
dpkg/changelog.in \
|
|
31
|
+
dpkg/compat \
|
|
32
|
+
dpkg/control \
|
|
33
|
+
dpkg/copyright \
|
|
34
|
+
dpkg/rules \
|
|
35
|
+
dpkg/libexe.install \
|
|
36
|
+
dpkg/libexe-dev.install \
|
|
37
|
+
dpkg/libexe-python3.install \
|
|
38
|
+
dpkg/libexe-tools.install \
|
|
39
|
+
dpkg/source/format
|
|
40
|
+
|
|
41
|
+
GETTEXT_FILES = \
|
|
42
|
+
config.rpath \
|
|
43
|
+
po/Makevars.in
|
|
44
|
+
|
|
45
|
+
PKGCONFIG_FILES = \
|
|
46
|
+
libexe.pc.in
|
|
47
|
+
|
|
48
|
+
SETUP_PY_FILES = \
|
|
49
|
+
_build.py \
|
|
50
|
+
pyproject.toml \
|
|
51
|
+
pyproject.toml.in
|
|
52
|
+
|
|
53
|
+
SPEC_FILES = \
|
|
54
|
+
libexe.spec \
|
|
55
|
+
libexe.spec.in
|
|
56
|
+
|
|
57
|
+
EXTRA_DIST = \
|
|
58
|
+
$(DPKG_FILES) \
|
|
59
|
+
$(GETTEXT_FILES) \
|
|
60
|
+
$(PKGCONFIG_FILES) \
|
|
61
|
+
$(SETUP_PY_FILES) \
|
|
62
|
+
$(SPEC_FILES)
|
|
63
|
+
|
|
64
|
+
DISTCLEANFILES = \
|
|
65
|
+
config.status \
|
|
66
|
+
config.cache \
|
|
67
|
+
config.log \
|
|
68
|
+
libexe.pc \
|
|
69
|
+
libexe.spec \
|
|
70
|
+
Makefile \
|
|
71
|
+
Makefile.in \
|
|
72
|
+
po/Makevars
|
|
73
|
+
|
|
74
|
+
pkgconfigdir = $(libdir)/pkgconfig
|
|
75
|
+
|
|
76
|
+
pkgconfig_DATA = \
|
|
77
|
+
libexe.pc
|
|
78
|
+
|
|
79
|
+
check-build: all
|
|
80
|
+
cd $(srcdir)/tests && $(MAKE) check-build $(AM_MAKEFLAGS)
|
|
81
|
+
|
|
82
|
+
libtool: @LIBTOOL_DEPS@
|
|
83
|
+
cd $(srcdir) && $(SHELL) ./config.status --recheck
|
|
84
|
+
|
|
85
|
+
lib: library
|
|
86
|
+
|
|
87
|
+
library:
|
|
88
|
+
(cd $(srcdir)/common && $(MAKE) $(AM_MAKEFLAGS))
|
|
89
|
+
(cd $(srcdir)/libcerror && $(MAKE) $(AM_MAKEFLAGS))
|
|
90
|
+
(cd $(srcdir)/libcthreads && $(MAKE) $(AM_MAKEFLAGS))
|
|
91
|
+
(cd $(srcdir)/libcdata && $(MAKE) $(AM_MAKEFLAGS))
|
|
92
|
+
(cd $(srcdir)/libclocale && $(MAKE) $(AM_MAKEFLAGS))
|
|
93
|
+
(cd $(srcdir)/libcnotify && $(MAKE) $(AM_MAKEFLAGS))
|
|
94
|
+
(cd $(srcdir)/libcsplit && $(MAKE) $(AM_MAKEFLAGS))
|
|
95
|
+
(cd $(srcdir)/libuna && $(MAKE) $(AM_MAKEFLAGS))
|
|
96
|
+
(cd $(srcdir)/libcfile && $(MAKE) $(AM_MAKEFLAGS))
|
|
97
|
+
(cd $(srcdir)/libcpath && $(MAKE) $(AM_MAKEFLAGS))
|
|
98
|
+
(cd $(srcdir)/libbfio && $(MAKE) $(AM_MAKEFLAGS))
|
|
99
|
+
(cd $(srcdir)/libfcache && $(MAKE) $(AM_MAKEFLAGS))
|
|
100
|
+
(cd $(srcdir)/libfdata && $(MAKE) $(AM_MAKEFLAGS))
|
|
101
|
+
(cd $(srcdir)/libfdatetime && $(MAKE) $(AM_MAKEFLAGS))
|
|
102
|
+
(cd $(srcdir)/libexe && $(MAKE) $(AM_MAKEFLAGS))
|
|
103
|
+
(cd $(srcdir)/po && $(MAKE) $(AM_MAKEFLAGS))
|
|
104
|
+
|