diff options
| author | Dennis Brentjes <d.brentjes@gmail.com> | 2016-06-23 18:07:42 +0200 |
|---|---|---|
| committer | Dennis Brentjes <d.brentjes@gmail.com> | 2016-06-23 18:07:42 +0200 |
| commit | a7bcede17b4c10e172c7877fc2ce89862dc454af (patch) | |
| tree | d89b8ff274d18d67d695c5f320a1d079e1bb26b6 /le/le_entry_table.hpp | |
| parent | 0f2d7c9ed9dfa3716840fc112bd53e5ec6b6315b (diff) | |
| download | openwar-a7bcede17b4c10e172c7877fc2ce89862dc454af.tar.gz openwar-a7bcede17b4c10e172c7877fc2ce89862dc454af.tar.bz2 openwar-a7bcede17b4c10e172c7877fc2ce89862dc454af.zip | |
adds alot more binary parsing.
Diffstat (limited to 'le/le_entry_table.hpp')
| -rw-r--r-- | le/le_entry_table.hpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/le/le_entry_table.hpp b/le/le_entry_table.hpp new file mode 100644 index 0000000..f31f542 --- /dev/null +++ b/le/le_entry_table.hpp @@ -0,0 +1,19 @@ +#pragma once + +#include "le_entry_table_entry.hpp" + +#include <map> +#include <iostream> + +namespace le { + +struct EntryTable +{ + std::map<uint32_t, EntryTableEntry> entries; +}; + +EntryTable parse_entry_table(std::istream& is, binparse::Offset32 offset); + +std::ostream& operator<<(std::ostream& os, EntryTable const& table); + +}
\ No newline at end of file |
