L_DicomIsImplementClass
#include "ltdic.h"
L_BOOL EXT_FUNCTION L_DicomIsImplementClass(hPDU)
HDICOMPDU hPDU; |
/* a DICOM Associate handle */ |
Determines whether setting the Implementation Class is enabled for the specified DICOM Associate.
Parameter |
Description |
hPDU |
A DICOM Associate handle. |
Returns
TRUE |
Setting the Implementation Class is enabled. |
FALSE |
Setting the Implementation Class is disabled. |
Comments
If setting the Implementation Class is enabled, the name may be retrieved using L_DicomGetImplementClass, or set using L_DicomSetImplementClass.
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
L_VOID Test(HDICOMPDU hPDU)
{
L_CHAR L_FAR* pszUID=NULL;
/* ...Assume association has been created */
/* is implement enabled? */
if(L_DicomIsImplementClass(hPDU))
{
/* disable it */
/* display old value */
pszUID = L_DicomGetImplementClass(hPDU);
MessageBox(NULL, pszUID, "Implement Class Disabled", MB_OK);
L_DicomSetImplementClass(hPDU, FALSE, pszUID);
}
else
{
/* enable it */
L_DicomSetImplementClass(hPDU, TRUE, UID_RT_DOSE_STORAGE);
pszUID = L_DicomGetImplementClass(hPDU);
MessageBox(NULL, pszUID, "Implement Class Enabled", MB_OK);
}
}