IWMDMProgress::End
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