diff options
| author | Alexander Kaspar <alexander.kaspar@gmail.com> | 2016-12-02 16:15:33 +0100 |
|---|---|---|
| committer | Alexander Kaspar <alexander.kaspar@gmail.com> | 2016-12-02 16:15:33 +0100 |
| commit | 813e4214907ae3de4c25834747b7dfb9ec1e2360 (patch) | |
| tree | 00dd4fb47bdd1da71ccd34e5c79e0d49ec90e202 /toolsrc/include | |
| parent | 62673ac3284a5dbca6e735d6d44ed37fbbbfd714 (diff) | |
| parent | 25b6ef7a9d4ad73ae6123be715a7904c101f31fc (diff) | |
| download | vcpkg-813e4214907ae3de4c25834747b7dfb9ec1e2360.tar.gz vcpkg-813e4214907ae3de4c25834747b7dfb9ec1e2360.zip | |
Merge branch 'master' of https://github.com/Microsoft/vcpkg into qca
Diffstat (limited to 'toolsrc/include')
| -rw-r--r-- | toolsrc/include/vcpkg.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/toolsrc/include/vcpkg.h b/toolsrc/include/vcpkg.h index ef78e213e..75dc40b43 100644 --- a/toolsrc/include/vcpkg.h +++ b/toolsrc/include/vcpkg.h @@ -11,6 +11,14 @@ namespace vcpkg void write_update(const vcpkg_paths& paths, const StatusParagraph& p); + struct StatusParagraph_and_associated_files + { + StatusParagraph pgh; + std::vector<std::string> files; + }; + + std::vector<StatusParagraph_and_associated_files> get_installed_files(const vcpkg_paths& paths, const StatusParagraphs& status_db); + expected<SourceParagraph> try_load_port(const fs::path& control_path); inline expected<SourceParagraph> try_load_port(const vcpkg_paths& paths, const std::string& name) |
