vcpkg/toolsrc/include/coff_file_reader.h
2017-08-31 18:03:54 -07:00

22 lines
357 B
C++

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