L_DicomSetNameUID
#include "Ltdic.h"
L_LTDIC_API L_BOOL L_DicomSetNameUID(pUID, pszName)
|
pDICOMUID pUID; |
/* pointer to a DICOMUID structure */ |
|
L_TCHAR * pszName; |
/* character string */ |
Sets the name of the specified item in the UID Table.
|
Parameter |
Description |
|
pUID |
Pointer to a structure that contains an item in the UID Table. The name of this item will be set using the string contained in pszName. |
|
pszName |
Character string that contains the name to be set. |
Returns
|
TRUE |
The name was successfully set. |
|
FALSE |
Not enough memory. |
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_DicomGetFirstUID, L_DicomGetLastUID, L_DicomGetPrevUID, L_DicomGetNextUID, L_DicomFindUID, L_DicomFindIndexUID |
|
Topics: |
Example
This example changes the name of an item in the UID table
L_INT DicomSetNameUIDExample(L_VOID)
{
pDICOMUID pUID;
pUID = L_DicomFindUID(TEXT("1.2.840.10008.1.1"));
if (pUID != NULL)
{
if (!L_DicomSetNameUID(pUID, TEXT("New name")))
return DICOM_ERROR_MEMORY;
}
return DICOM_SUCCESS;
}