IAppxPackageEditor::CreateDeltaPackageUsingBaselineBlockMap method (appxpackaging.h)

Creates a delta package from the differences in the updated package and the baseline block map.

Syntax

HRESULT CreateDeltaPackageUsingBaselineBlockMap(
  [in] IStream *updatedPackageStream,
  [in] IStream *baselineBlockMapStream,
  [in] LPCWSTR baselinePackageFullName,
  [in] IStream *deltaPackageStream
);

Parameters

[in] updatedPackageStream

An IStream that provides the contents of the updated app package.

[in] baselineBlockMapStream

An IStream that provides the contents of the baseline block map.

[in] baselinePackageFullName

The full name of the baseline app package.

[in] deltaPackageStream

An IStream that provides the contents of the delta (difference) app package.

Return value

If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.

Requirements

Requirement Value
Minimum supported client Windows 10 [desktop apps only]
Minimum supported server Windows Server 2016 [desktop apps only]
Target Platform Windows
Header appxpackaging.h

See also

IAppxPackageEditor