#include "ltdic.h"
L_LTDIC_API L_UINT32 L_DicomGetErrorSecure(hNet)
Returns a special ISCL or TLS error. This function is available in PACS Imaging toolkits.
Handle to an existing DICOM Network. This is the handle returned from the L_DicomCreateNet function.
Returns the last occurring error code.
Returns a specialized ISCL or TLS error code. For a list of possible values, refer to Return Codes.
The errors returned by this function may be useful for debugging purposes.
Required DLLs and Libraries
Win32, x64.
// This example assumes L_DicomConnect (…) has been called, and then the
// OnSecureLinkReady callback is called with an error code.
L_UINT32 EXT_CALLBACK myOnSecureLinkready(HDICOMNET hNet, L_UINT32 nError, L_VOID * pUserData)
{
UNREFERENCED_PARAMETER(pUserData);
UNREFERENCED_PARAMETER(nError);
L_TCHAR str[20];
wsprintf(str, TEXT("Error code is:%d"), L_DicomGetErrorSecure(hNet));
MessageBox(NULL, str, TEXT("Error"), MB_OK);
return 0;
};
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document