IWMDMProgress::End method (mswmdm.h)

The End method indicates that an operation is finished.

Syntax

HRESULT End();

Return value

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.

Examples

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

Requirement Value
Target Platform Windows
Header mswmdm.h
Library Mssachlp.lib

See also

Enabling Notifications

IWMDMProgress Interface

IWMDMProgress2::End2

IWMDMProgress3::End3