aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
Diffstat (limited to 'toolsrc/include')
-rw-r--r--toolsrc/include/coff_file_reader.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/toolsrc/include/coff_file_reader.h b/toolsrc/include/coff_file_reader.h
index 24fbf4576..197a61f43 100644
--- a/toolsrc/include/coff_file_reader.h
+++ b/toolsrc/include/coff_file_reader.h
@@ -5,17 +5,17 @@
namespace vcpkg::COFFFileReader
{
- struct dll_info
+ struct DllInfo
{
MachineType machine_type;
};
- struct lib_info
+ struct LibInfo
{
std::vector<MachineType> machine_types;
};
- dll_info read_dll(const fs::path& path);
+ DllInfo read_dll(const fs::path& path);
- lib_info read_lib(const fs::path& path);
+ LibInfo read_lib(const fs::path& path);
}