IWMDMProgress::End (deprecated)

banner art

This is preliminary documentation and subject to change.

This topic documents a feature of the Windows Media Device Manager SDK. We recommend that you migrate your application to use the Windows Portable Devices API. For more information, see the Windows Portable Devices SDK.

The End method indicates that an operation is finished.

Syntax

HRESULT End();

Parameters

This method takes no parameters.

Return Values

The return value from the method is ignored by Windows Media Device Manager.

Remarks

This method is called by various interfaces to indicate that an operation is ending. Windows Media Device Manager ignores any return code returned by the End method because the operation is completed or terminated before this method is called.

Example Code

The following C++ code is an implementation of the End method

HRESULT End()
{
    // TODO: Display the message: "IWMDMProgress::End called."
    return S_OK; // Unnecessary, since this is ignored.
}

Requirements

Header: Defined in mswmdm.h.

Library: mssachlp.lib

See Also