#pragma once #include "MachineType.h" #include "filesystem_fs.h" #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); }