L_DicomExistsUID

#include "Ltdic.h"

L_LTDIC_API L_BOOL L_DicomExistsUID(pUID)

Determines whether the pointer to the structure is valid.

Parameters

pDICOMUID pUID

Pointer to a DICOMUID structure.

Returns

Value Meaning
TRUE pUID is a valid pointer.
FALSE pUID is NULL.

Required DLLs and Libraries

Platforms

Win32, x64, Linux.

See Also

Functions

Topics

Example

This example checks a UID pointer

L_INT DicomExistsUIDExample(L_VOID) 
{ 
   pDICOMUID pUID; 
 
   pUID = L_DicomFindUID(TEXT("1.2.840.10008.1.1")); 
   if (L_DicomExistsUID(pUID) == FALSE) 
      MessageBox(NULL, TEXT("The UID does not exist"), TEXT("Notice"), MB_OK); 
 
   return DICOM_SUCCESS; 
} 

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

LEADTOOLS DICOM C API Help