cemu-vcpkg/toolsrc/include/vcpkg/base/cofffilereader.h

26 lines
400 B
C
Raw Normal View History

#pragma once
#include <vcpkg/base/files.h>
#include <vcpkg/base/machinetype.h>
#include <vector>
2017-08-31 18:03:54 -07:00
namespace vcpkg::CoffFileReader
{
2017-04-03 14:19:13 -07:00
struct DllInfo
{
MachineType machine_type;
};
2017-04-03 14:19:13 -07:00
struct LibInfo
{
std::vector<MachineType> machine_types;
};
#if defined(_WIN32)
2017-04-03 14:19:13 -07:00
DllInfo read_dll(const fs::path& path);
2017-04-03 14:19:13 -07:00
LibInfo read_lib(const fs::path& path);
#endif
2017-01-05 14:14:11 -08:00
}