The INSSEventHandler::Shutdown method is called when the NetShow server is shutdown.
Syntax
HRESULT Shutdown ( );
Parameters
None
Return Values
This method should return S_OK after successfully freeing all system resources allocated by the component.
Remarks
The following code illustrates a skeleton implementation of the INSSEventHandler::Shutdown method:
HRESULT
CEventHandler::Shutdown()
{
return( S_OK );
}
See Also
© 1996-1998 Microsoft Corporation. All rights reserved.