vcpkg/toolsrc/include/coff_file_reader.h
2017-04-04 16:44:40 -07:00

22 lines
357 B
C++

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