Separated KnownDLLs and KnownDLLs32

This commit is contained in:
ahm3dgg
2026-01-07 19:36:11 +02:00
parent 72ea3e0f0d
commit fdcc7455a1
3 changed files with 27 additions and 17 deletions

View File

@@ -34,6 +34,7 @@
struct emulator_settings;
struct application_settings;
using knowndlls_map = std::unordered_map<std::u16string, section>;
struct process_context
{
struct callbacks
@@ -140,7 +141,9 @@ struct process_context
handle_store<handle_types::timer, timer> timers{};
handle_store<handle_types::registry, registry_key, 2> registry_keys{};
std::map<uint16_t, atom_entry> atoms{};
std::unordered_map<std::u16string, section> knowndlls_sections;
knowndlls_map knowndlls32_sections;
knowndlls_map knowndlls64_sections;
std::vector<std::byte> default_register_set{};