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