├── Makefile ├── pe_bliss_tests_vc10.sln ├── pe_bliss_tests_vc9.sln ├── pe_bliss_vc10.sln ├── pe_bliss_vc9.sln ├── pe_lib ├── Makefile ├── entropy.cpp ├── entropy.h ├── file_version_info.cpp ├── file_version_info.h ├── message_table.cpp ├── message_table.h ├── pe_base.cpp ├── pe_base.h ├── pe_bliss.h ├── pe_bliss_resources.h ├── pe_bound_import.cpp ├── pe_bound_import.h ├── pe_checksum.cpp ├── pe_checksum.h ├── pe_debug.cpp ├── pe_debug.h ├── pe_directory.cpp ├── pe_directory.h ├── pe_dotnet.cpp ├── pe_dotnet.h ├── pe_exception.cpp ├── pe_exception.h ├── pe_exception_directory.cpp ├── pe_exception_directory.h ├── pe_exports.cpp ├── pe_exports.h ├── pe_factory.cpp ├── pe_factory.h ├── pe_imports.cpp ├── pe_imports.h ├── pe_lib.vcproj ├── pe_lib.vcxproj ├── pe_lib.vcxproj.filters ├── pe_load_config.cpp ├── pe_load_config.h ├── pe_properties.cpp ├── pe_properties.h ├── pe_properties_generic.cpp ├── pe_properties_generic.h ├── pe_rebuilder.cpp ├── pe_rebuilder.h ├── pe_relocations.cpp ├── pe_relocations.h ├── pe_resource_manager.cpp ├── pe_resource_manager.h ├── pe_resource_viewer.cpp ├── pe_resource_viewer.h ├── pe_resources.cpp ├── pe_resources.h ├── pe_rich_data.cpp ├── pe_rich_data.h ├── pe_section.cpp ├── pe_section.h ├── pe_structures.h ├── pe_tls.cpp ├── pe_tls.h ├── readme.txt ├── resource_bitmap_reader.cpp ├── resource_bitmap_reader.h ├── resource_bitmap_writer.cpp ├── resource_bitmap_writer.h ├── resource_cursor_icon_reader.cpp ├── resource_cursor_icon_reader.h ├── resource_cursor_icon_writer.cpp ├── resource_cursor_icon_writer.h ├── resource_data_info.cpp ├── resource_data_info.h ├── resource_internal.h ├── resource_message_list_reader.cpp ├── resource_message_list_reader.h ├── resource_string_table_reader.cpp ├── resource_string_table_reader.h ├── resource_version_info_reader.cpp ├── resource_version_info_reader.h ├── resource_version_info_writer.cpp ├── resource_version_info_writer.h ├── stdint_defs.h ├── utils.cpp ├── utils.h ├── version_info_editor.cpp ├── version_info_editor.h ├── version_info_types.h ├── version_info_viewer.cpp └── version_info_viewer.h ├── samples ├── Makefile ├── address_convertions │ ├── Makefile │ ├── address_convertions.vcproj │ ├── address_convertions.vcxproj │ ├── address_convertions.vcxproj.filters │ └── main.cpp ├── basic_dotnet_viewer │ ├── Makefile │ ├── basic_dotnet_viewer.vcproj │ ├── basic_dotnet_viewer.vcxproj │ ├── basic_dotnet_viewer.vcxproj.filters │ └── main.cpp ├── basic_info_viewer │ ├── Makefile │ ├── basic_info_viewer.vcproj │ ├── basic_info_viewer.vcxproj │ ├── basic_info_viewer.vcxproj.filters │ └── main.cpp ├── bound_import_reader │ ├── Makefile │ ├── bound_import_reader.vcproj │ ├── bound_import_reader.vcxproj │ ├── bound_import_reader.vcxproj.filters │ └── main.cpp ├── debug_info_reader │ ├── Makefile │ ├── debug_info_reader.vcproj │ ├── debug_info_reader.vcxproj │ ├── debug_info_reader.vcxproj.filters │ └── main.cpp ├── entropy_calculator │ ├── Makefile │ ├── entropy_calculator.vcproj │ ├── entropy_calculator.vcxproj │ ├── entropy_calculator.vcxproj.filters │ └── main.cpp ├── exception_dir_reader │ ├── Makefile │ ├── exception_dir_reader.vcproj │ ├── exception_dir_reader.vcxproj │ ├── exception_dir_reader.vcxproj.filters │ └── main.cpp ├── export_adder │ ├── Makefile │ ├── export_adder.vcproj │ ├── export_adder.vcxproj │ ├── export_adder.vcxproj.filters │ └── main.cpp ├── exports_reader │ ├── Makefile │ ├── exports_reader.vcproj │ ├── exports_reader.vcxproj │ ├── exports_reader.vcxproj.filters │ └── main.cpp ├── full_pe_rebuilder │ ├── Makefile │ ├── full_pe_rebuilder.vcproj │ ├── full_pe_rebuilder.vcxproj │ ├── full_pe_rebuilder.vcxproj.filters │ └── main.cpp ├── image_config_editor │ ├── Makefile │ ├── image_config_editor.vcproj │ ├── image_config_editor.vcxproj │ ├── image_config_editor.vcxproj.filters │ └── main.cpp ├── import_adder │ ├── Makefile │ ├── import_adder.vcproj │ ├── import_adder.vcxproj │ ├── import_adder.vcxproj.filters │ └── main.cpp ├── imports_reader │ ├── Makefile │ ├── imports_reader.vcproj │ ├── imports_reader.vcxproj │ ├── imports_reader.vcxproj.filters │ └── main.cpp ├── lib.h ├── pe_config_reader │ ├── Makefile │ ├── main.cpp │ ├── pe_config_reader.vcproj │ ├── pe_config_reader.vcxproj │ └── pe_config_reader.vcxproj.filters ├── pe_realigner │ ├── Makefile │ ├── main.cpp │ ├── pe_realigner.vcproj │ ├── pe_realigner.vcxproj │ └── pe_realigner.vcxproj.filters ├── pe_rebaser │ ├── Makefile │ ├── main.cpp │ ├── pe_rebaser.vcproj │ ├── pe_rebaser.vcxproj │ └── pe_rebaser.vcxproj.filters ├── pe_sections_reader │ ├── Makefile │ ├── main.cpp │ ├── pe_sections_reader.vcproj │ ├── pe_sections_reader.vcxproj │ └── pe_sections_reader.vcxproj.filters ├── pe_stripper │ ├── Makefile │ ├── main.cpp │ ├── pe_stripper.vcproj │ ├── pe_stripper.vcxproj │ └── pe_stripper.vcxproj.filters ├── relocation_adder │ ├── Makefile │ ├── main.cpp │ ├── relocation_adder.vcproj │ ├── relocation_adder.vcxproj │ └── relocation_adder.vcxproj.filters ├── relocations_reader │ ├── Makefile │ ├── main.cpp │ ├── relocations_reader.vcproj │ ├── relocations_reader.vcxproj │ └── relocations_reader.vcxproj.filters ├── resource_editor │ ├── Makefile │ ├── main.cpp │ ├── resource.h │ ├── resource.rc │ ├── resource_editor.vcproj │ ├── resource_editor.vcxproj │ ├── resource_editor.vcxproj.filters │ └── wxwin.ico ├── resource_viewer │ ├── Makefile │ ├── main.cpp │ ├── resource_viewer.vcproj │ ├── resource_viewer.vcxproj │ └── resource_viewer.vcxproj.filters ├── rich_overlay_stub_reader │ ├── Makefile │ ├── main.cpp │ ├── rich_overlay_stub_reader.vcproj │ ├── rich_overlay_stub_reader.vcxproj │ └── rich_overlay_stub_reader.vcxproj.filters ├── sample.mak ├── section_adder │ ├── Makefile │ ├── main.cpp │ ├── section_adder.vcproj │ ├── section_adder.vcxproj │ └── section_adder.vcxproj.filters ├── sections_and_addresses │ ├── Makefile │ ├── main.cpp │ ├── sections_and_addresses.vcproj │ ├── sections_and_addresses.vcxproj │ └── sections_and_addresses.vcxproj.filters ├── tls_editor │ ├── Makefile │ ├── main.cpp │ ├── tls_editor.vcproj │ ├── tls_editor.vcxproj │ └── tls_editor.vcxproj.filters └── tls_reader │ ├── Makefile │ ├── main.cpp │ ├── tls_reader.vcproj │ ├── tls_reader.vcxproj │ └── tls_reader.vcxproj.filters └── tests ├── Makefile ├── lib.h ├── pe_files ├── TestApp.exe ├── bound32.exe ├── bound64.exe ├── debug_test.exe ├── image32.exe ├── image64.exe ├── message_table_resource.exe ├── test_dll_32.dll └── test_dll_64.dll ├── test.h ├── test_bound_import ├── Makefile ├── main.cpp ├── test_bound_import.vcproj ├── test_bound_import.vcxproj └── test_bound_import.vcxproj.filters ├── test_checksum ├── Makefile ├── main.cpp ├── test_checksum.vcproj ├── test_checksum.vcxproj └── test_checksum.vcxproj.filters ├── test_debug ├── Makefile ├── main.cpp ├── test_debug.vcproj ├── test_debug.vcxproj └── test_debug.vcxproj.filters ├── test_dotnet ├── Makefile ├── main.cpp ├── test_dotnet.vcproj ├── test_dotnet.vcxproj └── test_dotnet.vcxproj.filters ├── test_entropy ├── Makefile ├── main.cpp ├── test_entropy.vcproj ├── test_entropy.vcxproj └── test_entropy.vcxproj.filters ├── test_exception_directory ├── Makefile ├── main.cpp ├── test_exception_directory.vcproj ├── test_exception_directory.vcxproj └── test_exception_directory.vcxproj.filters ├── test_exports ├── Makefile ├── main.cpp ├── test_exports.vcproj ├── test_exports.vcxproj └── test_exports.vcxproj.filters ├── test_imports ├── Makefile ├── main.cpp ├── test_imports.vcproj ├── test_imports.vcxproj └── test_imports.vcxproj.filters ├── test_load_config ├── Makefile ├── main.cpp ├── test_load_config.vcproj ├── test_load_config.vcxproj └── test_load_config.vcxproj.filters ├── test_relocations ├── Makefile ├── main.cpp ├── test_relocations.vcproj ├── test_relocations.vcxproj └── test_relocations.vcxproj.filters ├── test_resource_bitmap ├── Makefile ├── main.cpp ├── test_resource_bitmap.vcproj ├── test_resource_bitmap.vcxproj └── test_resource_bitmap.vcxproj.filters ├── test_resource_icon_cursor ├── Makefile ├── main.cpp ├── test_resource_icon_cursor.vcproj ├── test_resource_icon_cursor.vcxproj └── test_resource_icon_cursor.vcxproj.filters ├── test_resource_manager ├── Makefile ├── main.cpp ├── test_resource_manager.vcproj ├── test_resource_manager.vcxproj └── test_resource_manager.vcxproj.filters ├── test_resource_message_table ├── Makefile ├── main.cpp ├── test_resource_message_table.vcproj ├── test_resource_message_table.vcxproj └── test_resource_message_table.vcxproj.filters ├── test_resource_string_table ├── Makefile ├── main.cpp ├── test_resource_string_table.vcproj ├── test_resource_string_table.vcxproj └── test_resource_string_table.vcxproj.filters ├── test_resource_version_info ├── Makefile ├── main.cpp ├── test_resource_version_info.vcproj ├── test_resource_version_info.vcxproj └── test_resource_version_info.vcxproj.filters ├── test_resource_viewer ├── Makefile ├── main.cpp ├── test_resource_viewer.vcproj ├── test_resource_viewer.vcxproj └── test_resource_viewer.vcxproj.filters ├── test_resources ├── Makefile ├── main.cpp ├── test_resources.vcproj ├── test_resources.vcxproj └── test_resources.vcxproj.filters ├── test_rich_data ├── Makefile ├── main.cpp ├── test_rich_data.vcproj ├── test_rich_data.vcxproj └── test_rich_data.vcxproj.filters ├── test_runner ├── Makefile ├── main.cpp ├── test_runner.vcproj ├── test_runner.vcxproj └── test_runner.vcxproj.filters ├── test_tls ├── Makefile ├── main.cpp ├── test_tls.vcproj ├── test_tls.vcxproj └── test_tls.vcxproj.filters ├── tests.mak ├── tests_basic ├── Makefile ├── main.cpp ├── tests_basic.vcproj ├── tests_basic.vcxproj └── tests_basic.vcxproj.filters └── tests_utils ├── Makefile ├── main.cpp ├── tests_utils.vcproj ├── tests_utils.vcxproj └── tests_utils.vcxproj.filters /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/Makefile -------------------------------------------------------------------------------- /pe_bliss_tests_vc10.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_bliss_tests_vc10.sln -------------------------------------------------------------------------------- /pe_bliss_tests_vc9.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_bliss_tests_vc9.sln -------------------------------------------------------------------------------- /pe_bliss_vc10.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_bliss_vc10.sln -------------------------------------------------------------------------------- /pe_bliss_vc9.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_bliss_vc9.sln -------------------------------------------------------------------------------- /pe_lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/Makefile -------------------------------------------------------------------------------- /pe_lib/entropy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/entropy.cpp -------------------------------------------------------------------------------- /pe_lib/entropy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/entropy.h -------------------------------------------------------------------------------- /pe_lib/file_version_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/file_version_info.cpp -------------------------------------------------------------------------------- /pe_lib/file_version_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/file_version_info.h -------------------------------------------------------------------------------- /pe_lib/message_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/message_table.cpp -------------------------------------------------------------------------------- /pe_lib/message_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/message_table.h -------------------------------------------------------------------------------- /pe_lib/pe_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_base.cpp -------------------------------------------------------------------------------- /pe_lib/pe_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_base.h -------------------------------------------------------------------------------- /pe_lib/pe_bliss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_bliss.h -------------------------------------------------------------------------------- /pe_lib/pe_bliss_resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_bliss_resources.h -------------------------------------------------------------------------------- /pe_lib/pe_bound_import.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_bound_import.cpp -------------------------------------------------------------------------------- /pe_lib/pe_bound_import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_bound_import.h -------------------------------------------------------------------------------- /pe_lib/pe_checksum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_checksum.cpp -------------------------------------------------------------------------------- /pe_lib/pe_checksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_checksum.h -------------------------------------------------------------------------------- /pe_lib/pe_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_debug.cpp -------------------------------------------------------------------------------- /pe_lib/pe_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_debug.h -------------------------------------------------------------------------------- /pe_lib/pe_directory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_directory.cpp -------------------------------------------------------------------------------- /pe_lib/pe_directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_directory.h -------------------------------------------------------------------------------- /pe_lib/pe_dotnet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_dotnet.cpp -------------------------------------------------------------------------------- /pe_lib/pe_dotnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_dotnet.h -------------------------------------------------------------------------------- /pe_lib/pe_exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_exception.cpp -------------------------------------------------------------------------------- /pe_lib/pe_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_exception.h -------------------------------------------------------------------------------- /pe_lib/pe_exception_directory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_exception_directory.cpp -------------------------------------------------------------------------------- /pe_lib/pe_exception_directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_exception_directory.h -------------------------------------------------------------------------------- /pe_lib/pe_exports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_exports.cpp -------------------------------------------------------------------------------- /pe_lib/pe_exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_exports.h -------------------------------------------------------------------------------- /pe_lib/pe_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_factory.cpp -------------------------------------------------------------------------------- /pe_lib/pe_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_factory.h -------------------------------------------------------------------------------- /pe_lib/pe_imports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_imports.cpp -------------------------------------------------------------------------------- /pe_lib/pe_imports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_imports.h -------------------------------------------------------------------------------- /pe_lib/pe_lib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_lib.vcproj -------------------------------------------------------------------------------- /pe_lib/pe_lib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_lib.vcxproj -------------------------------------------------------------------------------- /pe_lib/pe_lib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_lib.vcxproj.filters -------------------------------------------------------------------------------- /pe_lib/pe_load_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_load_config.cpp -------------------------------------------------------------------------------- /pe_lib/pe_load_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_load_config.h -------------------------------------------------------------------------------- /pe_lib/pe_properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_properties.cpp -------------------------------------------------------------------------------- /pe_lib/pe_properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_properties.h -------------------------------------------------------------------------------- /pe_lib/pe_properties_generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_properties_generic.cpp -------------------------------------------------------------------------------- /pe_lib/pe_properties_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_properties_generic.h -------------------------------------------------------------------------------- /pe_lib/pe_rebuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_rebuilder.cpp -------------------------------------------------------------------------------- /pe_lib/pe_rebuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_rebuilder.h -------------------------------------------------------------------------------- /pe_lib/pe_relocations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_relocations.cpp -------------------------------------------------------------------------------- /pe_lib/pe_relocations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_relocations.h -------------------------------------------------------------------------------- /pe_lib/pe_resource_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_resource_manager.cpp -------------------------------------------------------------------------------- /pe_lib/pe_resource_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_resource_manager.h -------------------------------------------------------------------------------- /pe_lib/pe_resource_viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_resource_viewer.cpp -------------------------------------------------------------------------------- /pe_lib/pe_resource_viewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_resource_viewer.h -------------------------------------------------------------------------------- /pe_lib/pe_resources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_resources.cpp -------------------------------------------------------------------------------- /pe_lib/pe_resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_resources.h -------------------------------------------------------------------------------- /pe_lib/pe_rich_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_rich_data.cpp -------------------------------------------------------------------------------- /pe_lib/pe_rich_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_rich_data.h -------------------------------------------------------------------------------- /pe_lib/pe_section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_section.cpp -------------------------------------------------------------------------------- /pe_lib/pe_section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_section.h -------------------------------------------------------------------------------- /pe_lib/pe_structures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_structures.h -------------------------------------------------------------------------------- /pe_lib/pe_tls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_tls.cpp -------------------------------------------------------------------------------- /pe_lib/pe_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/pe_tls.h -------------------------------------------------------------------------------- /pe_lib/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/readme.txt -------------------------------------------------------------------------------- /pe_lib/resource_bitmap_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/resource_bitmap_reader.cpp -------------------------------------------------------------------------------- /pe_lib/resource_bitmap_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/resource_bitmap_reader.h -------------------------------------------------------------------------------- /pe_lib/resource_bitmap_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/resource_bitmap_writer.cpp -------------------------------------------------------------------------------- /pe_lib/resource_bitmap_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/resource_bitmap_writer.h -------------------------------------------------------------------------------- /pe_lib/resource_cursor_icon_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/resource_cursor_icon_reader.cpp -------------------------------------------------------------------------------- /pe_lib/resource_cursor_icon_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/resource_cursor_icon_reader.h -------------------------------------------------------------------------------- /pe_lib/resource_cursor_icon_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/resource_cursor_icon_writer.cpp -------------------------------------------------------------------------------- /pe_lib/resource_cursor_icon_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/resource_cursor_icon_writer.h -------------------------------------------------------------------------------- /pe_lib/resource_data_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/resource_data_info.cpp -------------------------------------------------------------------------------- /pe_lib/resource_data_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/resource_data_info.h -------------------------------------------------------------------------------- /pe_lib/resource_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/resource_internal.h -------------------------------------------------------------------------------- /pe_lib/resource_message_list_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/resource_message_list_reader.cpp -------------------------------------------------------------------------------- /pe_lib/resource_message_list_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/resource_message_list_reader.h -------------------------------------------------------------------------------- /pe_lib/resource_string_table_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/resource_string_table_reader.cpp -------------------------------------------------------------------------------- /pe_lib/resource_string_table_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/resource_string_table_reader.h -------------------------------------------------------------------------------- /pe_lib/resource_version_info_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/resource_version_info_reader.cpp -------------------------------------------------------------------------------- /pe_lib/resource_version_info_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/resource_version_info_reader.h -------------------------------------------------------------------------------- /pe_lib/resource_version_info_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/resource_version_info_writer.cpp -------------------------------------------------------------------------------- /pe_lib/resource_version_info_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/resource_version_info_writer.h -------------------------------------------------------------------------------- /pe_lib/stdint_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/stdint_defs.h -------------------------------------------------------------------------------- /pe_lib/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/utils.cpp -------------------------------------------------------------------------------- /pe_lib/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/utils.h -------------------------------------------------------------------------------- /pe_lib/version_info_editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/version_info_editor.cpp -------------------------------------------------------------------------------- /pe_lib/version_info_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/version_info_editor.h -------------------------------------------------------------------------------- /pe_lib/version_info_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/version_info_types.h -------------------------------------------------------------------------------- /pe_lib/version_info_viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/version_info_viewer.cpp -------------------------------------------------------------------------------- /pe_lib/version_info_viewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/pe_lib/version_info_viewer.h -------------------------------------------------------------------------------- /samples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/Makefile -------------------------------------------------------------------------------- /samples/address_convertions/Makefile: -------------------------------------------------------------------------------- 1 | include ../sample.mak 2 | -------------------------------------------------------------------------------- /samples/address_convertions/address_convertions.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/address_convertions/address_convertions.vcproj -------------------------------------------------------------------------------- /samples/address_convertions/address_convertions.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/address_convertions/address_convertions.vcxproj -------------------------------------------------------------------------------- /samples/address_convertions/address_convertions.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/address_convertions/address_convertions.vcxproj.filters -------------------------------------------------------------------------------- /samples/address_convertions/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/address_convertions/main.cpp -------------------------------------------------------------------------------- /samples/basic_dotnet_viewer/Makefile: -------------------------------------------------------------------------------- 1 | include ../sample.mak 2 | -------------------------------------------------------------------------------- /samples/basic_dotnet_viewer/basic_dotnet_viewer.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/basic_dotnet_viewer/basic_dotnet_viewer.vcproj -------------------------------------------------------------------------------- /samples/basic_dotnet_viewer/basic_dotnet_viewer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/basic_dotnet_viewer/basic_dotnet_viewer.vcxproj -------------------------------------------------------------------------------- /samples/basic_dotnet_viewer/basic_dotnet_viewer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/basic_dotnet_viewer/basic_dotnet_viewer.vcxproj.filters -------------------------------------------------------------------------------- /samples/basic_dotnet_viewer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/basic_dotnet_viewer/main.cpp -------------------------------------------------------------------------------- /samples/basic_info_viewer/Makefile: -------------------------------------------------------------------------------- 1 | include ../sample.mak 2 | -------------------------------------------------------------------------------- /samples/basic_info_viewer/basic_info_viewer.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/basic_info_viewer/basic_info_viewer.vcproj -------------------------------------------------------------------------------- /samples/basic_info_viewer/basic_info_viewer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/basic_info_viewer/basic_info_viewer.vcxproj -------------------------------------------------------------------------------- /samples/basic_info_viewer/basic_info_viewer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/basic_info_viewer/basic_info_viewer.vcxproj.filters -------------------------------------------------------------------------------- /samples/basic_info_viewer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/basic_info_viewer/main.cpp -------------------------------------------------------------------------------- /samples/bound_import_reader/Makefile: -------------------------------------------------------------------------------- 1 | include ../sample.mak 2 | -------------------------------------------------------------------------------- /samples/bound_import_reader/bound_import_reader.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/bound_import_reader/bound_import_reader.vcproj -------------------------------------------------------------------------------- /samples/bound_import_reader/bound_import_reader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/bound_import_reader/bound_import_reader.vcxproj -------------------------------------------------------------------------------- /samples/bound_import_reader/bound_import_reader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/bound_import_reader/bound_import_reader.vcxproj.filters -------------------------------------------------------------------------------- /samples/bound_import_reader/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/bound_import_reader/main.cpp -------------------------------------------------------------------------------- /samples/debug_info_reader/Makefile: -------------------------------------------------------------------------------- 1 | include ../sample.mak 2 | -------------------------------------------------------------------------------- /samples/debug_info_reader/debug_info_reader.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/debug_info_reader/debug_info_reader.vcproj -------------------------------------------------------------------------------- /samples/debug_info_reader/debug_info_reader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/debug_info_reader/debug_info_reader.vcxproj -------------------------------------------------------------------------------- /samples/debug_info_reader/debug_info_reader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/debug_info_reader/debug_info_reader.vcxproj.filters -------------------------------------------------------------------------------- /samples/debug_info_reader/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/debug_info_reader/main.cpp -------------------------------------------------------------------------------- /samples/entropy_calculator/Makefile: -------------------------------------------------------------------------------- 1 | include ../sample.mak 2 | -------------------------------------------------------------------------------- /samples/entropy_calculator/entropy_calculator.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/entropy_calculator/entropy_calculator.vcproj -------------------------------------------------------------------------------- /samples/entropy_calculator/entropy_calculator.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/entropy_calculator/entropy_calculator.vcxproj -------------------------------------------------------------------------------- /samples/entropy_calculator/entropy_calculator.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/entropy_calculator/entropy_calculator.vcxproj.filters -------------------------------------------------------------------------------- /samples/entropy_calculator/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/entropy_calculator/main.cpp -------------------------------------------------------------------------------- /samples/exception_dir_reader/Makefile: -------------------------------------------------------------------------------- 1 | include ../sample.mak 2 | -------------------------------------------------------------------------------- /samples/exception_dir_reader/exception_dir_reader.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/exception_dir_reader/exception_dir_reader.vcproj -------------------------------------------------------------------------------- /samples/exception_dir_reader/exception_dir_reader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/exception_dir_reader/exception_dir_reader.vcxproj -------------------------------------------------------------------------------- /samples/exception_dir_reader/exception_dir_reader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/exception_dir_reader/exception_dir_reader.vcxproj.filters -------------------------------------------------------------------------------- /samples/exception_dir_reader/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/exception_dir_reader/main.cpp -------------------------------------------------------------------------------- /samples/export_adder/Makefile: -------------------------------------------------------------------------------- 1 | include ../sample.mak 2 | -------------------------------------------------------------------------------- /samples/export_adder/export_adder.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/export_adder/export_adder.vcproj -------------------------------------------------------------------------------- /samples/export_adder/export_adder.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/export_adder/export_adder.vcxproj -------------------------------------------------------------------------------- /samples/export_adder/export_adder.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/export_adder/export_adder.vcxproj.filters -------------------------------------------------------------------------------- /samples/export_adder/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/export_adder/main.cpp -------------------------------------------------------------------------------- /samples/exports_reader/Makefile: -------------------------------------------------------------------------------- 1 | include ../sample.mak 2 | -------------------------------------------------------------------------------- /samples/exports_reader/exports_reader.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/exports_reader/exports_reader.vcproj -------------------------------------------------------------------------------- /samples/exports_reader/exports_reader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/exports_reader/exports_reader.vcxproj -------------------------------------------------------------------------------- /samples/exports_reader/exports_reader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/exports_reader/exports_reader.vcxproj.filters -------------------------------------------------------------------------------- /samples/exports_reader/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/exports_reader/main.cpp -------------------------------------------------------------------------------- /samples/full_pe_rebuilder/Makefile: -------------------------------------------------------------------------------- 1 | include ../sample.mak 2 | -------------------------------------------------------------------------------- /samples/full_pe_rebuilder/full_pe_rebuilder.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/full_pe_rebuilder/full_pe_rebuilder.vcproj -------------------------------------------------------------------------------- /samples/full_pe_rebuilder/full_pe_rebuilder.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/full_pe_rebuilder/full_pe_rebuilder.vcxproj -------------------------------------------------------------------------------- /samples/full_pe_rebuilder/full_pe_rebuilder.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/full_pe_rebuilder/full_pe_rebuilder.vcxproj.filters -------------------------------------------------------------------------------- /samples/full_pe_rebuilder/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/full_pe_rebuilder/main.cpp -------------------------------------------------------------------------------- /samples/image_config_editor/Makefile: -------------------------------------------------------------------------------- 1 | include ../sample.mak 2 | -------------------------------------------------------------------------------- /samples/image_config_editor/image_config_editor.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/image_config_editor/image_config_editor.vcproj -------------------------------------------------------------------------------- /samples/image_config_editor/image_config_editor.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/image_config_editor/image_config_editor.vcxproj -------------------------------------------------------------------------------- /samples/image_config_editor/image_config_editor.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/image_config_editor/image_config_editor.vcxproj.filters -------------------------------------------------------------------------------- /samples/image_config_editor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/image_config_editor/main.cpp -------------------------------------------------------------------------------- /samples/import_adder/Makefile: -------------------------------------------------------------------------------- 1 | include ../sample.mak 2 | -------------------------------------------------------------------------------- /samples/import_adder/import_adder.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/import_adder/import_adder.vcproj -------------------------------------------------------------------------------- /samples/import_adder/import_adder.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/import_adder/import_adder.vcxproj -------------------------------------------------------------------------------- /samples/import_adder/import_adder.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/import_adder/import_adder.vcxproj.filters -------------------------------------------------------------------------------- /samples/import_adder/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/import_adder/main.cpp -------------------------------------------------------------------------------- /samples/imports_reader/Makefile: -------------------------------------------------------------------------------- 1 | include ../sample.mak 2 | -------------------------------------------------------------------------------- /samples/imports_reader/imports_reader.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/imports_reader/imports_reader.vcproj -------------------------------------------------------------------------------- /samples/imports_reader/imports_reader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/imports_reader/imports_reader.vcxproj -------------------------------------------------------------------------------- /samples/imports_reader/imports_reader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/imports_reader/imports_reader.vcxproj.filters -------------------------------------------------------------------------------- /samples/imports_reader/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/imports_reader/main.cpp -------------------------------------------------------------------------------- /samples/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/lib.h -------------------------------------------------------------------------------- /samples/pe_config_reader/Makefile: -------------------------------------------------------------------------------- 1 | include ../sample.mak 2 | -------------------------------------------------------------------------------- /samples/pe_config_reader/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/pe_config_reader/main.cpp -------------------------------------------------------------------------------- /samples/pe_config_reader/pe_config_reader.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/pe_config_reader/pe_config_reader.vcproj -------------------------------------------------------------------------------- /samples/pe_config_reader/pe_config_reader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/pe_config_reader/pe_config_reader.vcxproj -------------------------------------------------------------------------------- /samples/pe_config_reader/pe_config_reader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/pe_config_reader/pe_config_reader.vcxproj.filters -------------------------------------------------------------------------------- /samples/pe_realigner/Makefile: -------------------------------------------------------------------------------- 1 | include ../sample.mak 2 | -------------------------------------------------------------------------------- /samples/pe_realigner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/pe_realigner/main.cpp -------------------------------------------------------------------------------- /samples/pe_realigner/pe_realigner.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/pe_realigner/pe_realigner.vcproj -------------------------------------------------------------------------------- /samples/pe_realigner/pe_realigner.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/pe_realigner/pe_realigner.vcxproj -------------------------------------------------------------------------------- /samples/pe_realigner/pe_realigner.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/pe_realigner/pe_realigner.vcxproj.filters -------------------------------------------------------------------------------- /samples/pe_rebaser/Makefile: -------------------------------------------------------------------------------- 1 | include ../sample.mak 2 | -------------------------------------------------------------------------------- /samples/pe_rebaser/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/pe_rebaser/main.cpp -------------------------------------------------------------------------------- /samples/pe_rebaser/pe_rebaser.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/pe_rebaser/pe_rebaser.vcproj -------------------------------------------------------------------------------- /samples/pe_rebaser/pe_rebaser.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/pe_rebaser/pe_rebaser.vcxproj -------------------------------------------------------------------------------- /samples/pe_rebaser/pe_rebaser.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/pe_rebaser/pe_rebaser.vcxproj.filters -------------------------------------------------------------------------------- /samples/pe_sections_reader/Makefile: -------------------------------------------------------------------------------- 1 | include ../sample.mak 2 | -------------------------------------------------------------------------------- /samples/pe_sections_reader/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/pe_sections_reader/main.cpp -------------------------------------------------------------------------------- /samples/pe_sections_reader/pe_sections_reader.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/pe_sections_reader/pe_sections_reader.vcproj -------------------------------------------------------------------------------- /samples/pe_sections_reader/pe_sections_reader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/pe_sections_reader/pe_sections_reader.vcxproj -------------------------------------------------------------------------------- /samples/pe_sections_reader/pe_sections_reader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/pe_sections_reader/pe_sections_reader.vcxproj.filters -------------------------------------------------------------------------------- /samples/pe_stripper/Makefile: -------------------------------------------------------------------------------- 1 | include ../sample.mak 2 | -------------------------------------------------------------------------------- /samples/pe_stripper/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/pe_stripper/main.cpp -------------------------------------------------------------------------------- /samples/pe_stripper/pe_stripper.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/pe_stripper/pe_stripper.vcproj -------------------------------------------------------------------------------- /samples/pe_stripper/pe_stripper.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/pe_stripper/pe_stripper.vcxproj -------------------------------------------------------------------------------- /samples/pe_stripper/pe_stripper.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/pe_stripper/pe_stripper.vcxproj.filters -------------------------------------------------------------------------------- /samples/relocation_adder/Makefile: -------------------------------------------------------------------------------- 1 | include ../sample.mak 2 | -------------------------------------------------------------------------------- /samples/relocation_adder/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/relocation_adder/main.cpp -------------------------------------------------------------------------------- /samples/relocation_adder/relocation_adder.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/relocation_adder/relocation_adder.vcproj -------------------------------------------------------------------------------- /samples/relocation_adder/relocation_adder.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/relocation_adder/relocation_adder.vcxproj -------------------------------------------------------------------------------- /samples/relocation_adder/relocation_adder.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/relocation_adder/relocation_adder.vcxproj.filters -------------------------------------------------------------------------------- /samples/relocations_reader/Makefile: -------------------------------------------------------------------------------- 1 | include ../sample.mak 2 | -------------------------------------------------------------------------------- /samples/relocations_reader/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/relocations_reader/main.cpp -------------------------------------------------------------------------------- /samples/relocations_reader/relocations_reader.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/relocations_reader/relocations_reader.vcproj -------------------------------------------------------------------------------- /samples/relocations_reader/relocations_reader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/relocations_reader/relocations_reader.vcxproj -------------------------------------------------------------------------------- /samples/relocations_reader/relocations_reader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/relocations_reader/relocations_reader.vcxproj.filters -------------------------------------------------------------------------------- /samples/resource_editor/Makefile: -------------------------------------------------------------------------------- 1 | include ../sample.mak 2 | -------------------------------------------------------------------------------- /samples/resource_editor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/resource_editor/main.cpp -------------------------------------------------------------------------------- /samples/resource_editor/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/resource_editor/resource.h -------------------------------------------------------------------------------- /samples/resource_editor/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/resource_editor/resource.rc -------------------------------------------------------------------------------- /samples/resource_editor/resource_editor.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/resource_editor/resource_editor.vcproj -------------------------------------------------------------------------------- /samples/resource_editor/resource_editor.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/resource_editor/resource_editor.vcxproj -------------------------------------------------------------------------------- /samples/resource_editor/resource_editor.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/resource_editor/resource_editor.vcxproj.filters -------------------------------------------------------------------------------- /samples/resource_editor/wxwin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/resource_editor/wxwin.ico -------------------------------------------------------------------------------- /samples/resource_viewer/Makefile: -------------------------------------------------------------------------------- 1 | include ../sample.mak 2 | -------------------------------------------------------------------------------- /samples/resource_viewer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/resource_viewer/main.cpp -------------------------------------------------------------------------------- /samples/resource_viewer/resource_viewer.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/resource_viewer/resource_viewer.vcproj -------------------------------------------------------------------------------- /samples/resource_viewer/resource_viewer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/resource_viewer/resource_viewer.vcxproj -------------------------------------------------------------------------------- /samples/resource_viewer/resource_viewer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/resource_viewer/resource_viewer.vcxproj.filters -------------------------------------------------------------------------------- /samples/rich_overlay_stub_reader/Makefile: -------------------------------------------------------------------------------- 1 | include ../sample.mak 2 | -------------------------------------------------------------------------------- /samples/rich_overlay_stub_reader/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/rich_overlay_stub_reader/main.cpp -------------------------------------------------------------------------------- /samples/rich_overlay_stub_reader/rich_overlay_stub_reader.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/rich_overlay_stub_reader/rich_overlay_stub_reader.vcproj -------------------------------------------------------------------------------- /samples/rich_overlay_stub_reader/rich_overlay_stub_reader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/rich_overlay_stub_reader/rich_overlay_stub_reader.vcxproj -------------------------------------------------------------------------------- /samples/rich_overlay_stub_reader/rich_overlay_stub_reader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/rich_overlay_stub_reader/rich_overlay_stub_reader.vcxproj.filters -------------------------------------------------------------------------------- /samples/sample.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/sample.mak -------------------------------------------------------------------------------- /samples/section_adder/Makefile: -------------------------------------------------------------------------------- 1 | include ../sample.mak 2 | -------------------------------------------------------------------------------- /samples/section_adder/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/section_adder/main.cpp -------------------------------------------------------------------------------- /samples/section_adder/section_adder.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/section_adder/section_adder.vcproj -------------------------------------------------------------------------------- /samples/section_adder/section_adder.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/section_adder/section_adder.vcxproj -------------------------------------------------------------------------------- /samples/section_adder/section_adder.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/section_adder/section_adder.vcxproj.filters -------------------------------------------------------------------------------- /samples/sections_and_addresses/Makefile: -------------------------------------------------------------------------------- 1 | include ../sample.mak 2 | -------------------------------------------------------------------------------- /samples/sections_and_addresses/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/sections_and_addresses/main.cpp -------------------------------------------------------------------------------- /samples/sections_and_addresses/sections_and_addresses.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/sections_and_addresses/sections_and_addresses.vcproj -------------------------------------------------------------------------------- /samples/sections_and_addresses/sections_and_addresses.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/sections_and_addresses/sections_and_addresses.vcxproj -------------------------------------------------------------------------------- /samples/sections_and_addresses/sections_and_addresses.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/sections_and_addresses/sections_and_addresses.vcxproj.filters -------------------------------------------------------------------------------- /samples/tls_editor/Makefile: -------------------------------------------------------------------------------- 1 | include ../sample.mak 2 | -------------------------------------------------------------------------------- /samples/tls_editor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/tls_editor/main.cpp -------------------------------------------------------------------------------- /samples/tls_editor/tls_editor.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/tls_editor/tls_editor.vcproj -------------------------------------------------------------------------------- /samples/tls_editor/tls_editor.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/tls_editor/tls_editor.vcxproj -------------------------------------------------------------------------------- /samples/tls_editor/tls_editor.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/tls_editor/tls_editor.vcxproj.filters -------------------------------------------------------------------------------- /samples/tls_reader/Makefile: -------------------------------------------------------------------------------- 1 | include ../sample.mak 2 | -------------------------------------------------------------------------------- /samples/tls_reader/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/tls_reader/main.cpp -------------------------------------------------------------------------------- /samples/tls_reader/tls_reader.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/tls_reader/tls_reader.vcproj -------------------------------------------------------------------------------- /samples/tls_reader/tls_reader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/tls_reader/tls_reader.vcxproj -------------------------------------------------------------------------------- /samples/tls_reader/tls_reader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/samples/tls_reader/tls_reader.vcxproj.filters -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/lib.h -------------------------------------------------------------------------------- /tests/pe_files/TestApp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/pe_files/TestApp.exe -------------------------------------------------------------------------------- /tests/pe_files/bound32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/pe_files/bound32.exe -------------------------------------------------------------------------------- /tests/pe_files/bound64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/pe_files/bound64.exe -------------------------------------------------------------------------------- /tests/pe_files/debug_test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/pe_files/debug_test.exe -------------------------------------------------------------------------------- /tests/pe_files/image32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/pe_files/image32.exe -------------------------------------------------------------------------------- /tests/pe_files/image64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/pe_files/image64.exe -------------------------------------------------------------------------------- /tests/pe_files/message_table_resource.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/pe_files/message_table_resource.exe -------------------------------------------------------------------------------- /tests/pe_files/test_dll_32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/pe_files/test_dll_32.dll -------------------------------------------------------------------------------- /tests/pe_files/test_dll_64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/pe_files/test_dll_64.dll -------------------------------------------------------------------------------- /tests/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test.h -------------------------------------------------------------------------------- /tests/test_bound_import/Makefile: -------------------------------------------------------------------------------- 1 | include ../tests.mak 2 | -------------------------------------------------------------------------------- /tests/test_bound_import/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_bound_import/main.cpp -------------------------------------------------------------------------------- /tests/test_bound_import/test_bound_import.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_bound_import/test_bound_import.vcproj -------------------------------------------------------------------------------- /tests/test_bound_import/test_bound_import.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_bound_import/test_bound_import.vcxproj -------------------------------------------------------------------------------- /tests/test_bound_import/test_bound_import.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_bound_import/test_bound_import.vcxproj.filters -------------------------------------------------------------------------------- /tests/test_checksum/Makefile: -------------------------------------------------------------------------------- 1 | include ../tests.mak 2 | -------------------------------------------------------------------------------- /tests/test_checksum/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_checksum/main.cpp -------------------------------------------------------------------------------- /tests/test_checksum/test_checksum.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_checksum/test_checksum.vcproj -------------------------------------------------------------------------------- /tests/test_checksum/test_checksum.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_checksum/test_checksum.vcxproj -------------------------------------------------------------------------------- /tests/test_checksum/test_checksum.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_checksum/test_checksum.vcxproj.filters -------------------------------------------------------------------------------- /tests/test_debug/Makefile: -------------------------------------------------------------------------------- 1 | include ../tests.mak 2 | -------------------------------------------------------------------------------- /tests/test_debug/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_debug/main.cpp -------------------------------------------------------------------------------- /tests/test_debug/test_debug.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_debug/test_debug.vcproj -------------------------------------------------------------------------------- /tests/test_debug/test_debug.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_debug/test_debug.vcxproj -------------------------------------------------------------------------------- /tests/test_debug/test_debug.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_debug/test_debug.vcxproj.filters -------------------------------------------------------------------------------- /tests/test_dotnet/Makefile: -------------------------------------------------------------------------------- 1 | include ../tests.mak 2 | -------------------------------------------------------------------------------- /tests/test_dotnet/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_dotnet/main.cpp -------------------------------------------------------------------------------- /tests/test_dotnet/test_dotnet.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_dotnet/test_dotnet.vcproj -------------------------------------------------------------------------------- /tests/test_dotnet/test_dotnet.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_dotnet/test_dotnet.vcxproj -------------------------------------------------------------------------------- /tests/test_dotnet/test_dotnet.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_dotnet/test_dotnet.vcxproj.filters -------------------------------------------------------------------------------- /tests/test_entropy/Makefile: -------------------------------------------------------------------------------- 1 | include ../tests.mak 2 | -------------------------------------------------------------------------------- /tests/test_entropy/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_entropy/main.cpp -------------------------------------------------------------------------------- /tests/test_entropy/test_entropy.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_entropy/test_entropy.vcproj -------------------------------------------------------------------------------- /tests/test_entropy/test_entropy.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_entropy/test_entropy.vcxproj -------------------------------------------------------------------------------- /tests/test_entropy/test_entropy.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_entropy/test_entropy.vcxproj.filters -------------------------------------------------------------------------------- /tests/test_exception_directory/Makefile: -------------------------------------------------------------------------------- 1 | include ../tests.mak 2 | -------------------------------------------------------------------------------- /tests/test_exception_directory/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_exception_directory/main.cpp -------------------------------------------------------------------------------- /tests/test_exception_directory/test_exception_directory.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_exception_directory/test_exception_directory.vcproj -------------------------------------------------------------------------------- /tests/test_exception_directory/test_exception_directory.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_exception_directory/test_exception_directory.vcxproj -------------------------------------------------------------------------------- /tests/test_exception_directory/test_exception_directory.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_exception_directory/test_exception_directory.vcxproj.filters -------------------------------------------------------------------------------- /tests/test_exports/Makefile: -------------------------------------------------------------------------------- 1 | include ../tests.mak 2 | -------------------------------------------------------------------------------- /tests/test_exports/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_exports/main.cpp -------------------------------------------------------------------------------- /tests/test_exports/test_exports.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_exports/test_exports.vcproj -------------------------------------------------------------------------------- /tests/test_exports/test_exports.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_exports/test_exports.vcxproj -------------------------------------------------------------------------------- /tests/test_exports/test_exports.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_exports/test_exports.vcxproj.filters -------------------------------------------------------------------------------- /tests/test_imports/Makefile: -------------------------------------------------------------------------------- 1 | include ../tests.mak 2 | -------------------------------------------------------------------------------- /tests/test_imports/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_imports/main.cpp -------------------------------------------------------------------------------- /tests/test_imports/test_imports.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_imports/test_imports.vcproj -------------------------------------------------------------------------------- /tests/test_imports/test_imports.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_imports/test_imports.vcxproj -------------------------------------------------------------------------------- /tests/test_imports/test_imports.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_imports/test_imports.vcxproj.filters -------------------------------------------------------------------------------- /tests/test_load_config/Makefile: -------------------------------------------------------------------------------- 1 | include ../tests.mak 2 | -------------------------------------------------------------------------------- /tests/test_load_config/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_load_config/main.cpp -------------------------------------------------------------------------------- /tests/test_load_config/test_load_config.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_load_config/test_load_config.vcproj -------------------------------------------------------------------------------- /tests/test_load_config/test_load_config.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_load_config/test_load_config.vcxproj -------------------------------------------------------------------------------- /tests/test_load_config/test_load_config.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_load_config/test_load_config.vcxproj.filters -------------------------------------------------------------------------------- /tests/test_relocations/Makefile: -------------------------------------------------------------------------------- 1 | include ../tests.mak 2 | -------------------------------------------------------------------------------- /tests/test_relocations/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_relocations/main.cpp -------------------------------------------------------------------------------- /tests/test_relocations/test_relocations.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_relocations/test_relocations.vcproj -------------------------------------------------------------------------------- /tests/test_relocations/test_relocations.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_relocations/test_relocations.vcxproj -------------------------------------------------------------------------------- /tests/test_relocations/test_relocations.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_relocations/test_relocations.vcxproj.filters -------------------------------------------------------------------------------- /tests/test_resource_bitmap/Makefile: -------------------------------------------------------------------------------- 1 | include ../tests.mak 2 | -------------------------------------------------------------------------------- /tests/test_resource_bitmap/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_resource_bitmap/main.cpp -------------------------------------------------------------------------------- /tests/test_resource_bitmap/test_resource_bitmap.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_resource_bitmap/test_resource_bitmap.vcproj -------------------------------------------------------------------------------- /tests/test_resource_bitmap/test_resource_bitmap.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_resource_bitmap/test_resource_bitmap.vcxproj -------------------------------------------------------------------------------- /tests/test_resource_bitmap/test_resource_bitmap.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_resource_bitmap/test_resource_bitmap.vcxproj.filters -------------------------------------------------------------------------------- /tests/test_resource_icon_cursor/Makefile: -------------------------------------------------------------------------------- 1 | include ../tests.mak 2 | -------------------------------------------------------------------------------- /tests/test_resource_icon_cursor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_resource_icon_cursor/main.cpp -------------------------------------------------------------------------------- /tests/test_resource_icon_cursor/test_resource_icon_cursor.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_resource_icon_cursor/test_resource_icon_cursor.vcproj -------------------------------------------------------------------------------- /tests/test_resource_icon_cursor/test_resource_icon_cursor.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_resource_icon_cursor/test_resource_icon_cursor.vcxproj -------------------------------------------------------------------------------- /tests/test_resource_icon_cursor/test_resource_icon_cursor.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_resource_icon_cursor/test_resource_icon_cursor.vcxproj.filters -------------------------------------------------------------------------------- /tests/test_resource_manager/Makefile: -------------------------------------------------------------------------------- 1 | include ../tests.mak 2 | -------------------------------------------------------------------------------- /tests/test_resource_manager/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_resource_manager/main.cpp -------------------------------------------------------------------------------- /tests/test_resource_manager/test_resource_manager.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_resource_manager/test_resource_manager.vcproj -------------------------------------------------------------------------------- /tests/test_resource_manager/test_resource_manager.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_resource_manager/test_resource_manager.vcxproj -------------------------------------------------------------------------------- /tests/test_resource_manager/test_resource_manager.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_resource_manager/test_resource_manager.vcxproj.filters -------------------------------------------------------------------------------- /tests/test_resource_message_table/Makefile: -------------------------------------------------------------------------------- 1 | include ../tests.mak 2 | -------------------------------------------------------------------------------- /tests/test_resource_message_table/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_resource_message_table/main.cpp -------------------------------------------------------------------------------- /tests/test_resource_message_table/test_resource_message_table.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_resource_message_table/test_resource_message_table.vcproj -------------------------------------------------------------------------------- /tests/test_resource_message_table/test_resource_message_table.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_resource_message_table/test_resource_message_table.vcxproj -------------------------------------------------------------------------------- /tests/test_resource_message_table/test_resource_message_table.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_resource_message_table/test_resource_message_table.vcxproj.filters -------------------------------------------------------------------------------- /tests/test_resource_string_table/Makefile: -------------------------------------------------------------------------------- 1 | include ../tests.mak 2 | -------------------------------------------------------------------------------- /tests/test_resource_string_table/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_resource_string_table/main.cpp -------------------------------------------------------------------------------- /tests/test_resource_string_table/test_resource_string_table.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_resource_string_table/test_resource_string_table.vcproj -------------------------------------------------------------------------------- /tests/test_resource_string_table/test_resource_string_table.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_resource_string_table/test_resource_string_table.vcxproj -------------------------------------------------------------------------------- /tests/test_resource_string_table/test_resource_string_table.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_resource_string_table/test_resource_string_table.vcxproj.filters -------------------------------------------------------------------------------- /tests/test_resource_version_info/Makefile: -------------------------------------------------------------------------------- 1 | include ../tests.mak 2 | -------------------------------------------------------------------------------- /tests/test_resource_version_info/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_resource_version_info/main.cpp -------------------------------------------------------------------------------- /tests/test_resource_version_info/test_resource_version_info.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_resource_version_info/test_resource_version_info.vcproj -------------------------------------------------------------------------------- /tests/test_resource_version_info/test_resource_version_info.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_resource_version_info/test_resource_version_info.vcxproj -------------------------------------------------------------------------------- /tests/test_resource_version_info/test_resource_version_info.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_resource_version_info/test_resource_version_info.vcxproj.filters -------------------------------------------------------------------------------- /tests/test_resource_viewer/Makefile: -------------------------------------------------------------------------------- 1 | include ../tests.mak 2 | -------------------------------------------------------------------------------- /tests/test_resource_viewer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_resource_viewer/main.cpp -------------------------------------------------------------------------------- /tests/test_resource_viewer/test_resource_viewer.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_resource_viewer/test_resource_viewer.vcproj -------------------------------------------------------------------------------- /tests/test_resource_viewer/test_resource_viewer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_resource_viewer/test_resource_viewer.vcxproj -------------------------------------------------------------------------------- /tests/test_resource_viewer/test_resource_viewer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_resource_viewer/test_resource_viewer.vcxproj.filters -------------------------------------------------------------------------------- /tests/test_resources/Makefile: -------------------------------------------------------------------------------- 1 | include ../tests.mak 2 | -------------------------------------------------------------------------------- /tests/test_resources/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_resources/main.cpp -------------------------------------------------------------------------------- /tests/test_resources/test_resources.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_resources/test_resources.vcproj -------------------------------------------------------------------------------- /tests/test_resources/test_resources.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_resources/test_resources.vcxproj -------------------------------------------------------------------------------- /tests/test_resources/test_resources.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_resources/test_resources.vcxproj.filters -------------------------------------------------------------------------------- /tests/test_rich_data/Makefile: -------------------------------------------------------------------------------- 1 | include ../tests.mak 2 | -------------------------------------------------------------------------------- /tests/test_rich_data/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_rich_data/main.cpp -------------------------------------------------------------------------------- /tests/test_rich_data/test_rich_data.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_rich_data/test_rich_data.vcproj -------------------------------------------------------------------------------- /tests/test_rich_data/test_rich_data.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_rich_data/test_rich_data.vcxproj -------------------------------------------------------------------------------- /tests/test_rich_data/test_rich_data.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_rich_data/test_rich_data.vcxproj.filters -------------------------------------------------------------------------------- /tests/test_runner/Makefile: -------------------------------------------------------------------------------- 1 | include ../tests.mak 2 | -------------------------------------------------------------------------------- /tests/test_runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_runner/main.cpp -------------------------------------------------------------------------------- /tests/test_runner/test_runner.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_runner/test_runner.vcproj -------------------------------------------------------------------------------- /tests/test_runner/test_runner.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_runner/test_runner.vcxproj -------------------------------------------------------------------------------- /tests/test_runner/test_runner.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_runner/test_runner.vcxproj.filters -------------------------------------------------------------------------------- /tests/test_tls/Makefile: -------------------------------------------------------------------------------- 1 | include ../tests.mak 2 | -------------------------------------------------------------------------------- /tests/test_tls/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_tls/main.cpp -------------------------------------------------------------------------------- /tests/test_tls/test_tls.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_tls/test_tls.vcproj -------------------------------------------------------------------------------- /tests/test_tls/test_tls.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_tls/test_tls.vcxproj -------------------------------------------------------------------------------- /tests/test_tls/test_tls.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/test_tls/test_tls.vcxproj.filters -------------------------------------------------------------------------------- /tests/tests.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/tests.mak -------------------------------------------------------------------------------- /tests/tests_basic/Makefile: -------------------------------------------------------------------------------- 1 | include ../tests.mak 2 | -------------------------------------------------------------------------------- /tests/tests_basic/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/tests_basic/main.cpp -------------------------------------------------------------------------------- /tests/tests_basic/tests_basic.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/tests_basic/tests_basic.vcproj -------------------------------------------------------------------------------- /tests/tests_basic/tests_basic.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/tests_basic/tests_basic.vcxproj -------------------------------------------------------------------------------- /tests/tests_basic/tests_basic.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/tests_basic/tests_basic.vcxproj.filters -------------------------------------------------------------------------------- /tests/tests_utils/Makefile: -------------------------------------------------------------------------------- 1 | include ../tests.mak 2 | -------------------------------------------------------------------------------- /tests/tests_utils/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/tests_utils/main.cpp -------------------------------------------------------------------------------- /tests/tests_utils/tests_utils.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/tests_utils/tests_utils.vcproj -------------------------------------------------------------------------------- /tests/tests_utils/tests_utils.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/tests_utils/tests_utils.vcxproj -------------------------------------------------------------------------------- /tests/tests_utils/tests_utils.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/portable-executable-library/HEAD/tests/tests_utils/tests_utils.vcxproj.filters --------------------------------------------------------------------------------