Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions apis/PackageManager/IAppPackageManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,14 @@ namespace Exchange {
const string &version,
InstallState &state /* @out */
) = 0;

// @brief getConfigForPackage
// @text getConfigForPackage
// @param fileLocator: locator of package
// @param id: package id
// @param version: version of package
// @param config: metadata of package
virtual Core::hresult GetConfigForPackage(const string &fileLocator, string& id /* @out */, string &version /* @out */, RuntimeConfig& config /* @out */) = 0;
};


Expand Down
Loading