aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-04-03 14:19:13 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-04-04 16:44:40 -0700
commit80e48c2756cc2c453ba221fe38c32f969d5139ea (patch)
tree5312d758dde52a1bb733f2b6a18e77c03c628415 /toolsrc/include
parent44cd8f90b156eab59843e5f1622d578d5918151d (diff)
downloadvcpkg-80e48c2756cc2c453ba221fe38c32f969d5139ea.tar.gz
vcpkg-80e48c2756cc2c453ba221fe38c32f969d5139ea.zip
dll_info->DllInfo, lib_info->LibInfo
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);
}