Called when the server is turned off.
Syntax
HRESULT Shutdown ( );
Return Values
This method must return S_OK after successfully freeing all system resources allocated by the component.
Remarks
The following code illustrates a skeletal implementation of the INSSEventNotification::Shutdown method:
HRESULT
CEventNotification::Shutdown()
{
return( S_OK );
}
See Also
INSSEventNotification::Initialize
[Previous][Next]