From 80e48c2756cc2c453ba221fe38c32f969d5139ea Mon Sep 17 00:00:00 2001 From: Alexander Karatarakis Date: Mon, 3 Apr 2017 14:19:13 -0700 Subject: dll_info->DllInfo, lib_info->LibInfo --- toolsrc/include/coff_file_reader.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'toolsrc/include') 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 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); } -- cgit v1.2.3