L_DicomSetPresStateInfo

#include "l_bitmap.h"

L_LTDIC_API L_UINT16 L_DicomSetPresStateInfo(hDS, pPresState)

Sets the attributes of the "Presentation State Module".

Parameters

HDICOMDS hDS

A DICOM handle.

pDICOMPRESSTATEINFO pPresState

Pointer to a "Presentation State Module" attributes structure.

Returns

Value Meaning
DICOM_SUCCESS The function was successful.
>0 An error occurred. Refer to Return Codes.

Comments

This function will set the attributes of the "Presentation State Module". Before calling this function, initialize pPresState->uStructSize to be sizeof(DICOMPRESSTATEINFO) and initialize all the members of the structure.

Required DLLs and Libraries

Platforms

Win32, x64, Linux.

See Also

Functions

Topics

Example

L_INT DicomSetPresStateInfoExample(HDICOMDS hPresStateDS) 
{ 
   L_UINT16             nRet; 
   VALUEDATE            Date; 
   VALUETIME            Time; 
   DICOMPRESSTATEINFO   PresState; 
   SYSTEMTIME           SysTime; 
 
   GetSystemTime(&SysTime); 
   Date.nYear = SysTime.wYear;  
   Date.nMonth = SysTime.wMonth;  
   Date.nDay = SysTime.wDay; 
 
   Time.nHours = SysTime.wHour; 
   Time.nMinutes = SysTime.wMinute; 
   Time.nSeconds = SysTime.wSecond; 
 
   PresState.nInstanceNumber = 1; 
   PresState.pszPresLabel = TEXT("Label"); 
   PresState.pszPresDescription = TEXT("Description"); 
   PresState.pszPresCreator = TEXT("Creator"); 
   PresState.pPresCreationDate = &Date; 
   PresState.pPresCreationTime = &Time; 
   PresState.uStructSize = sizeof(DICOMPRESSTATEINFO); 
   nRet = L_DicomSetPresStateInfo(hPresStateDS,&PresState); 
   if (nRet == DICOM_SUCCESS) 
      MessageBox( NULL, TEXT("Presentation state has been successfully updated"), TEXT("Notice"), MB_OK); 
   return nRet; 
} 
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