The client application is responsible for implementing an OnAppEndWaitCursor event handler for some of the supported FileNet Application Integration commands. This event handler method should cancel the display of the application's wait cursor. This method is only useful when the OnAppBeginWaitCursor method has previously been called.
HRESULT __stdcall CEventHandler::OnAppEndWaitCursor()
{
// End display of the application's wait cursor.
AfxGetMainWnd()->EndWaitCursor();
return S_OK;
}