#pragma once #include #include #include #include namespace Trans::DLL { /// /// Parse all resources from a DLL file. /// /// @param filename Path to the DLL file. /// @return A map of resource IDs to their binary data. /// /// @throws std::runtime_error on various failure points. /// std::unordered_map> parseDLL( const std::filesystem::path& filename); }