mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 11:49:00 +08:00
22 lines
357 B
C++
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);
|
|
}
|