cemu-vcpkg/toolsrc/include/vcpkg/base/cofffilereader.h
Robert Schumacher e17de99599 [vcpkg] Re-layout all files using new organization scheme.
All filenames and directories are lowercase. Use dots for namespace separation.
2017-10-13 18:37:41 -07:00

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);
}