#pragma once #include "types.hpp" #include namespace le { using binparse::PString8; using binparse::Value16; struct ResidentNameTableEntry { PString8 string; Value16 index; }; ResidentNameTableEntry parse_resident_name_table_entry(std::istream& is); std::ostream& operator<<(std::ostream& os, ResidentNameTableEntry const& entry); }