Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/installer/corehost/cli/deps_entry.h')
-rw-r--r--src/installer/corehost/cli/deps_entry.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/installer/corehost/cli/deps_entry.h b/src/installer/corehost/cli/deps_entry.h
index 2c66b1f0552..d06e2988aa3 100644
--- a/src/installer/corehost/cli/deps_entry.h
+++ b/src/installer/corehost/cli/deps_entry.h
@@ -52,19 +52,17 @@ struct deps_entry_t
bool is_serviceable;
bool is_rid_specific;
- // Given a "base" dir, yield the file path within this directory or single-file bundle.
- bool to_dir_path(const pal::string_t& base, bool look_in_bundle, pal::string_t* str) const;
+ // Given a "base" dir, yield the filepath within this directory or relative to this directory based on "look_in_base"
+ bool to_path(const pal::string_t& base, bool look_in_base, pal::string_t* str) const;
+
+ // Given a "base" dir, yield the file path within this directory.
+ bool to_dir_path(const pal::string_t& base, pal::string_t* str) const;
// Given a "base" dir, yield the relative path in the package layout.
- bool to_rel_path(const pal::string_t& base, bool look_in_bundle, pal::string_t* str) const;
+ bool to_rel_path(const pal::string_t& base, pal::string_t* str) const;
// Given a "base" dir, yield the relative path with package name, version in the package layout.
bool to_full_path(const pal::string_t& root, pal::string_t* str) const;
-
-private:
- // Given a "base" dir, yield the filepath within this directory or relative to this directory based on "look_in_base"
- // Returns a path within the single-file bundle, or a file on disk,
- bool to_path(const pal::string_t& base, const pal::string_t& ietf_code, bool look_in_base, bool look_in_bundle, pal::string_t* str) const;
};
#endif // __DEPS_ENTRY_H_