L_DicomInsertModule

Summary

Inserts a new module in the Data Set.

Syntax

#include "Ltdic.h"

L_LTDIC_API pDICOMMODULE L_DicomInsertModule(hDS, nModule, bOptional)

Parameters

HDICOMDS hDS

A DICOM handle.

L_UINT32 nModule

Module constant the indicates the module being inserted. For a list of default values, refer to IOD Module Constants.

L_BOOL bOptional

Flag that indicates which elements of the module to insert. Possible values are:

Value Meaning
TRUE Insert all elements of the specified module.
FALSE Insert only the mandatory elements of the specified module.

Returns

Value Meaning
!NULL A pointer to a DICOMMODULE structure containing the newly inserted item.
NULL Not enough memory to insert the item.

Comments

LEAD controls the placement of the module in the Data Set.

Required DLLs and Libraries

Platforms

Win32, x64, Linux.

See Also

Functions

Topics

Example

This example inserts a module in Data Set

L_INT DicomInsertModuleExample(L_VOID) 
{ 
   HDICOMDS     hDS; 
   pDICOMMODULE pModule; 
 
   hDS = L_DicomCreateDS(NULL); 
 
   L_DicomInitDS(hDS, CLASS_CT_IMAGE_STORAGE, 0);  
   pModule = L_DicomInsertModule(hDS, MODULE_PATIENT_STUDY, TRUE); 
   if (pModule == NULL) 
   { 
      L_DicomFreeDS(hDS); 
      return DICOM_ERROR_MEMORY; 
   } 
 
   L_DicomFreeDS(hDS); 
   return DICOM_SUCCESS; 
} 

Help Version 22.0.2022.12.7
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS DICOM C API Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.