GetSendQueueSize Example for C++ 6.0 and later
{
//display queue size--this should be called with a Client hNet
long lSize = m_pLEADDicomNet->GetSendQueueSize (m_pLEADDicomNet->GethNet());
CString strMsg;
strMsg.Format("SendQueueSize[%d]", lSize);
AfxMessageBox(strMsg);
}