aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include/coff_file_reader.h
diff options
context:
space:
mode:
Diffstat (limited to 'toolsrc/include/coff_file_reader.h')
-rw-r--r--toolsrc/include/coff_file_reader.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/toolsrc/include/coff_file_reader.h b/toolsrc/include/coff_file_reader.h
deleted file mode 100644
index 7287211a1..000000000
--- a/toolsrc/include/coff_file_reader.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#pragma once
-#include "MachineType.h"
-#include "filesystem_fs.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);
-}