summaryrefslogtreecommitdiff
path: root/le/le_file.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'le/le_file.hpp')
-rw-r--r--le/le_file.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/le/le_file.hpp b/le/le_file.hpp
index 56857c5..f66bd36 100644
--- a/le/le_file.hpp
+++ b/le/le_file.hpp
@@ -5,6 +5,9 @@
#include "mz_header.hpp"
#include "le_header.hpp"
#include "le_object_table.hpp"
+#include "le_object_page_table.hpp"
+#include "le_resident_name_table.hpp"
+#include "le_entry_table.hpp"
#include <cstdint>
#include <cstddef>
@@ -27,6 +30,9 @@ struct File
std::vector<uint8_t> dos_exe;
Header le_header;
ObjectTable object_table;
+ ObjectPageTable object_page_table;
+ ResidentNameTable resident_name_table;
+ EntryTable entry_table;
};
File parse_file(std::istream& is);