L_DicomInsertCodedConcept
#include "ltdic.h"
pDICOMCODEDCONCEPT EXT_FUNCTION L_DicomInsertCodedConcept(pContextGroup, pszCodingSchemeDesignator, pszCodingSchemeVersion, pszCodeValue, pszCodeMeaning, pContextGroupLocalVersion, pszContextGroupExtensionCreatorUID, uFlags)
pDICOMCONTEXTGROUP pContextGroup; |
/* pointer to a Context Group */ |
L_CHAR * pszCodingSchemeDesignator; |
/* Coding Scheme Designator */ |
L_CHAR * pszCodingSchemeVersion; |
/* Coding Scheme Version */ |
L_CHAR * pszCodeValue; |
/* Code Value */ |
L_CHAR * pszCodeMeaning; |
/* Code Meaning */ |
pVALUEDATETIME pContextGroupLocalVersion; |
/* pointer to a Context Group Local Version */ |
L_CHAR * pszContextGroupExtensionCreatorUID; |
/* Context Group Extension Creator UID */ |
L_UINT16 uFlags; |
/* flags */ |
Adds a new Coded Concept to the specified Context Group.
Parameter |
Description | |
pContextGroup |
Pointer to a DICOMCONTEXTGROUP structure that specifies the Context Group to which the new Coded Concept is to be added. | |
pszCodingSchemeDesignator |
Character string that contains the Coding Scheme Designator (0008,0102) of the new Coded Concept. | |
pszCodingSchemeVersion |
Character string that contains the Coding Scheme Version (0008,0103) of the new Coded Concept. Set this to NULL if no Coding Scheme Version is to be defined for the new Coded Concept. | |
pszCodeValue |
Character string that contains the Code Value (0008,0100) of the new Coded Concept. | |
pszCodeMeaning |
Character string that contains the Code Meaning (0008,0104) of the new Coded Concept. | |
pContextGroupLocalVersion |
Pointer to a VALUEDATETIME structure that specifies the Context Group Local Version (0008,0107) of the new Coded Concept. Set this to NULL if no Context Group Local Version is to be defined for the new Coded Concept. | |
pszContextGroupExtensionCreatorUID |
Character string that contains the Context Group Extension Creator UID (0008,010D) of the new Coded Concept. Set this to NULL if no Context Group Extension Creator UID is to be defined for the new Coded Concept. | |
uFlags |
Flags that control the behavior of this function. This can be set to 0 or: | |
|
Value |
Meaning |
|
DICOM_CONTEXTGROUP_DISALLOW_DUPLICATES |
[0x01] The function should fail if a Coded Concept with the same specified Coding Scheme Designator and Code Value already exists in the specified Context Group. |
Returns
!NULL |
Pointer to a DICOMCODEDCONCEPT structure that specifies the newly inserted Coded Concept. |
NULL |
The function failed to allocate memory. |
Comments
Please note that if the Coding Scheme Designator, the Code Value, and the Code Meaning of the new Coded Concept are not specified, the function fails and returns NULL.
If a Context Group in the Context Group Table has a corresponding Group in the internal table maintained by LEADTOOLS, then you can use the L_DicomDefaultContextGroup function to discard any changes made to the Context Group, including the additions of new Coded Concepts.
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: |
L_DicomSetCodedConceptCodeMeaning, L_DicomDeleteCodedConcept, L_DicomGetFirstCodedConcept, L_DicomFindIndexCodedConcept, L_DicomDefaultContextGroup |
Topics: |
Example
For an example, refer to L_DicomFindContextGroup.