Skip to content
Open
Show file tree
Hide file tree
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
12 changes: 6 additions & 6 deletions apis/PackageManager/IAppPackageManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -124,22 +124,22 @@ namespace Exchange {
// @param fileLocator: FileLocator
virtual Core::hresult Delete(const string &fileLocator) = 0;

struct Percent {
uint8_t percent;
struct ProgressInfo {
uint8_t progress;
};

// @brief Delete
// @brief Progress
// @text progress
// @param downloadId: Download id
virtual Core::hresult Progress(
const string &downloadId,
Percent &percent /* @out */) = 0;
ProgressInfo &progress /* @out */) = 0;

// @brief GetStorageDetails
// @text getStorageDetails
virtual Core::hresult GetStorageDetails(
uint32_t &quotaKb /* @out */,
uint32_t &usedKb /* @out */) = 0;
string &quotaKb /* @out */,
string &usedKb /* @out */) = 0;

// @brief RateLimit
// @text rateLimit
Expand Down
Loading
Loading