#include "Ltdic.h"
pDICOMMODULE LDicomDS::FindModule(nModule)
L_UINT32 nModule; |
module constant |
Returns a pointer to a DICOMMODULE structure that contains information about the specified module.
Parameter |
Description |
nModule |
Module constant that specifies the module to find. For a list of default module constants, refer to IOD Module Constants. |
!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 LDicomDS::FindIndexModule.
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 |
Win32, x64
This example checks if a module exists in a Data Set.
L_INT LDicomDS_FindModuleExample()
{
LDicomDS* pDS;
pDICOMMODULE pModule;
pDS = new LDicomDS(NULL);
pDS->InitDS( CLASS_XA_BIPLANE_IMAGE_STORAGE_RETIRED, 0);
pModule = pDS->FindModule(MODULE_GENERAL_STUDY);
MessageBox(NULL, (pModule != NULL) ? TEXT("TRUE") : TEXT("FALSE"), TEXT("Notice"), MB_OK);
delete pDS;
return DICOM_SUCCESS;
}
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET