vcpkg/toolsrc/include/coff_file_reader.h

22 lines
357 B
C
Raw Normal View History

#pragma once
#include <vector>
#include "MachineType.h"
2016-11-30 10:08:53 +08:00
#include "filesystem_fs.h"
2017-01-06 06:14:11 +08:00
namespace vcpkg::COFFFileReader
{
2017-04-04 05:19:13 +08:00
struct DllInfo
{
MachineType machine_type;
};
2017-04-04 05:19:13 +08:00
struct LibInfo
{
std::vector<MachineType> machine_types;
};
2017-04-04 05:19:13 +08:00
DllInfo read_dll(const fs::path& path);
2017-04-04 05:19:13 +08:00
LibInfo read_lib(const fs::path& path);
2017-01-06 06:14:11 +08:00
}