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