#include "Ltdic.h"
L_LTDIC_API pDICOMMODULE L_DicomFindModule(hDS, nModule)
Returns a pointer to a DICOMMODULE structure that contains information about the specified module.
A DICOM handle.
Module constant that specifies the module to find. For a list of default module constants, refer to IOD Module Constants.
Value | Meaning |
---|---|
!NULL | A pointer to a DICOMMODULE Structure that contains information about the specified module. |
NULL | The specified module was not found. |
To find the module at a specific index use L_DicomFindIndexModule.
Required DLLs and Libraries
Win32, x64, Linux.
This example checks if a module exists in a Data Set
L_INT DicomFindModuleExample(L_VOID)
{
HDICOMDS hDS;
pDICOMMODULE pModule;
hDS = L_DicomCreateDS(NULL);
L_DicomInitDS(hDS, CLASS_XA_BIPLANE_IMAGE_STORAGE_RETIRED, 0);
pModule = L_DicomFindModule(hDS, MODULE_GENERAL_STUDY);
MessageBox(NULL, (pModule != NULL) ? TEXT("TRUE") : TEXT("FALSE"), TEXT("Notice"), MB_OK);
L_DicomFreeDS(hDS);
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