mirror of
https://github.com/cemu-project/vcpkg.git
synced 2025-02-24 19:43:33 +01:00
24 lines
373 B
C++
24 lines
373 B
C++
#pragma once
|
|
|
|
#include <vcpkg/base/files.h>
|
|
#include <vcpkg/base/machinetype.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);
|
|
}
|