LDicomNet::GetServer
#include "ltdic.h"
LDicomNet LDicomNet::GetServer(L_VOID)
Returns the DICOM Network object of the SCP. This function is available in the Medical Suite Toolkit.
Returns
The DICOM Network object of the SCP connected to the SCU.
Comments
The object returned is valid only if the calling object is an SCU. If the calling object is an SCP, this function will return NULL.
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
Functions: |
|
Topics: |
Example
/* This example displays the number of clients connected to the some server */
L_VOID Test(LDicomNet *pNet)
{
LDicomNet *pServer;
L_CHAR szText[80];
pServer = pNet->GetServer();
sprintf(szText, "%u", pServer->GetClientCount());
MessageBox(NULL, szText, "Notice", MB_OK);
}