Determines whether setting the Implementation Class is enabled for the specified DICOM Associate.
#include "ltdic.h"
L_LTDIC_API L_BOOL L_DicomIsImplementClass(hPDU)
A DICOM Associate handle.
| Value | Meaning |
|---|---|
| TRUE | Setting the Implementation Class is enabled. |
| FALSE | Setting the Implementation Class is disabled. |
If setting the Implementation Class is enabled, the name may be retrieved using L_DicomGetImplementClass, or set using L_DicomSetImplementClass.
Win32, x64, Linux.
L_INT DicomIsImplementClassExample(HDICOMPDU hPDU){L_TCHAR * pszUID=NULL;L_INT nRet;/* ...Assume association has been created */L_TCHAR szImplementClass[PDU_MAX_UID_SIZE+1];/* is implement enabled? */if(L_DicomIsImplementClass(hPDU)){/* disable it *//* display old value */L_DicomGetImplementClass(hPDU, szImplementClass , PDU_MAX_UID_SIZE+1);MessageBox(NULL, szImplementClass, TEXT("Implement Class Disabled"), MB_OK);nRet = L_DicomSetImplementClass(hPDU, FALSE, pszUID);if (nRet != DICOM_SUCCESS)return nRet;}else{/* enable it */nRet = L_DicomSetImplementClass(hPDU, TRUE, UID_RT_DOSE_STORAGE);if (nRet != DICOM_SUCCESS)return nRet;L_DicomGetImplementClass(hPDU, szImplementClass , PDU_MAX_UID_SIZE+1);MessageBox(NULL, szImplementClass, TEXT("Implement Class Enabled"), MB_OK);}return DICOM_SUCCESS;}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document
