void
AFXAPI AfxAssertValidObject(const CObject* pOb,
LPCSTR lpszFileName,
int nLine)
{
if (pOb == NULL)
{
TRACE(traceAppMsg, 0,
"ASSERT_VALID fails with NULL pointer.\n");
if (AfxAssertFailedLine(lpszFileName, nLine))
AfxDebugBreak();// here cursor show error
return