Products | Support | Send comments on this topic. | Email a link to this topic. | Back to Getting Started | Help Version 18.0.10.23
LEADTOOLS DICOM C DLL Help

L_DicomGetVersion

Show in webframe

#include "ltdic.h"

L_LTDIC_API L_UINT16 L_DicomGetVersion(hPDU)

HDICOMPDU hPDU;

/* a DICOM Associate handle */

Returns the version of the specified DICOM Associate.

Parameter

Description

hPDU

A DICOM Associate handle.

Returns

The version of the specified DICOM Associate.

Comments

The default value is 1.

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

Platforms

Win32, x64, Linux.

See Also

Functions:

L_DicomSetVersion

Topics:

Working with DICOM Associate Connections

Example

L_INT DicomGetVersionExample(HDICOMPDU hPDU)
{
   L_TCHAR szText[10];
   L_INT nRet;

   wsprintf(szText, TEXT("%d"), L_DicomGetVersion(hPDU));
   MessageBox(NULL, szText, TEXT("Test"), MB_OK);

   /* set the version */
   nRet = L_DicomSetVersion(hPDU, 99);
   if (nRet != DICOM_SUCCESS)
      return nRet;
   
   wsprintf(szText, TEXT("%d"), L_DicomGetVersion(hPDU));
   MessageBox(NULL, szText, TEXT("Test"), MB_OK);
   return DICOM_SUCCESS;
}
Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.