From 4bc35659f1b770cbe3c86a6d19816ce6f054b84b Mon Sep 17 00:00:00 2001 From: _xeroxz Date: Sun, 1 Aug 2021 23:48:59 -0700 Subject: [PATCH] removed useless typedefs... --- include/unpacker.hpp | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/include/unpacker.hpp b/include/unpacker.hpp index 1bfa3f9..eeb06e2 100644 --- a/include/unpacker.hpp +++ b/include/unpacker.hpp @@ -10,20 +10,6 @@ #include #include -struct process_module_info_t -{ - std::uintptr_t section, mapped_base, img_base; - std::uint32_t image_size, flags; - std::uint16_t loaded_order_index, init_order_index, load_count, file_name_offset; - char file_path[ 0x100 ]; -}; - -struct process_modules_t -{ - std::uint32_t cnt; - process_module_info_t modules[ VAR_LEN ]; -}; - #define PAGE_4KB 0x1000 #define STACK_SIZE PAGE_4KB * 512