cemu-vcpkg/toolsrc/include/vcpkg/base/cofffilereader.h
2018-03-02 09:25:32 -08:00

26 lines
400 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;
};
#if defined(_WIN32)
DllInfo read_dll(const fs::path& path);
LibInfo read_lib(const fs::path& path);
#endif
}