LDicomNet::GetQueueSend
#include "ltdic.h"
L_UINT32 LDicomNet::GetQueueSend(L_VOID)
Returns the number of bytes in the send queue. This function is available in the Medical Suite Toolkit.
Returns
The number of bytes in the send queue.
Required DLLs and Libraries
LTDIC For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application |
See Also
Topics: |
Example
/* This example displays the number of bytes not sent */
L_VOID Test(LDicomNet *pNet)
{
L_CHAR szText[80];
sprintf(szText, "%u", pNet->GetQueueSend());
MessageBox(NULL, szText, "Notice", MB_OK);
}