mirror of
https://github.com/godotengine/godot.git
synced 2024-11-27 09:16:35 +08:00
.. | ||
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_godot.cpp | ||
pe_bliss_godot.h | ||
pe_bliss_resources.h | ||
pe_bliss.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_directory.cpp | ||
pe_exception_directory.h | ||
pe_exception.cpp | ||
pe_exception.h | ||
pe_exports.cpp | ||
pe_exports.h | ||
pe_factory.cpp | ||
pe_factory.h | ||
pe_imports.cpp | ||
pe_imports.h | ||
pe_load_config.cpp | ||
pe_load_config.h | ||
pe_properties_generic.cpp | ||
pe_properties_generic.h | ||
pe_properties.cpp | ||
pe_properties.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 | ||
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 | ||
SCsub | ||
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 |
/*************************************************************************/ /* Copyright (c) 2015 dx, http://kaimi.ru */ /* */ /* Permission is hereby granted, free of charge, to any person */ /* obtaining a copy of this software and associated documentation */ /* files (the "Software"), to deal in the Software without */ /* restriction, including without limitation the rights to use, */ /* copy, modify, merge, publish, distribute, sublicense, and/or */ /* sell copies of the Software, and to permit persons to whom the */ /* Software is furnished to do so, subject to the following conditions: */ /* The above copyright notice and this permission notice shall be */ /* included in all copies or substantial portions of the Software. */ /* */ /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */ /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */ /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */ /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */ /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ Открытая бесплатная библиотека для работы с PE-файлами PE Bliss. Бесплатна к использованию, модификации и распространению. Автор: DX (c) DX 2011-2012, kaimi.ru Совместимость: Windows, Linux Возможности: [+] Создание PE или PE+ файла с нуля [+] Чтение 32-разрядных и 64-разрядных PE-файлов (PE, PE+) и единообразная работа с ними [+] Пересборка 32-разрядных и 64-разрядных PE-файлов [+] Работа с директориями и заголовками [+] Конвертирование адресов [+] Чтение и редактирование секций PE-файла [+] Чтение и редактирование таблицы импортов [+] Чтение и редактирование таблицы экспортов [+] Чтение и редактирование таблиц релокаций [+] Чтение и редактирование ресурсов [+] Чтение и редактирование TLS [+] Чтение и редактирование конфигурации образа (image config) [+] Чтение базовой информации .NET [+] Чтение и редактирование информации о привязанном импорте [+] Чтение директории исключений (только PE+) [+] Чтение отладочной директории с расширенной информацией [+] Вычисление энтропии [+] Изменение файлового выравнивания [+] Изменение базового адреса загрузки [+] Работа с DOS Stub'ом и Rich overlay [+] Высокоуровневое чтение ресурсов: картинки, иконки, курсоры, информация о версии, строковые таблицы, таблицы сообщений [+] Высокоуровневое редактирование ресурсов: картинки, иконки, курсоры, информация о версии [English] Open a free library for working with PE-file PE Bliss. Free to use, modify, and distribute. Author: DX (c) DX 2011-2012, kaimi.ru Compatibility: Windows, Linux ### Capabilities: [+] Creation of PE or PE + file from scratch [+] Reading the 32-bit and 64-bit PE-file (PE, PE +) and uniform working with them [+] Rebuild 32-bit and 64-bit PE-files [+] Working with the directors and titles [+] Converting addresses [+] Reading and editing sections of PE-file [+] Reading and editing the import table [+] Reading and editing tables exports [+] Reading and editing tables relocations [+] Reading and editing resources [+] Reading and editing TLS [+] Reading and editing the configuration of the image (image config) [+] Reading data base .NET [+] Reading and editing information about tethered import [+] Read the directory exceptions (only PE +) [+] Read debug directories with extended information [+] The calculation of entropy [+] Changing file alignment [+] Change the base load address [+] Support of DOS Stub'om and Rich overlay [+] High-level reading resources: images, icons, cursors, version information, string tables, message table [+] High-level editing resources: images, icons, cursors, version information