#pragma once #include #include #include namespace vcpkg::CoffFileReader { struct DllInfo { MachineType machine_type; }; struct LibInfo { std::vector machine_types; }; DllInfo read_dll(const fs::path& path); LibInfo read_lib(const fs::path& path); }