ONNONSECURERECEIVEDISCL

#include "ltdic.h"

L_VOID pEXT_CALLBACK YourFunction(hNet, nError, nType, nLength, pUserData)

This function is called after data sent in non-secure mode is received.

This function is available in the Medical Suite toolkits.

Parameters

HDICOMNET hNet

Handle to an existing DICOM Network. This is the handle returned from the L_DicomCreateNet function.

L_INT32 nError

Error code. Refer to Return Codes.

L_CHAR *nType

Pointer to a variable to be updated with the type of data received.

L_UINT32 nLength

The length of the received data, in bytes.

L_VOID * pUserData

Void pointer that you can use to pass one or more additional parameters that the callback function needs. To use this feature, assign a value to a variable or create a structure that contains as many fields as you need. Then, in this parameter, pass the address of the variable or structure, casting it to L_VOID *. The callback function, which receives the address in its own pUserData parameter, can cast it to a pointer of the appropriate data type to access your variable or structure. If the additional parameters are not needed, you can pass NULL in this parameter.

Returns

None.

Comments

After data is received in a non-secure send process, this function is called. The data from pBuffer will be freed after this callback function returns.

If nError is DICOM_MEMORY_ERROR, an allocating memory error has occurred. In this case, pBuffer is NULL and nLength is 0.

Required DLLs and Libraries

Platforms

Win32, x64

See Also

Functions

Topics

Example

L_VOID EXT_CALLBACK myOnNonSecureReceived(HDICOMNET hNet, L_UINT32 nError, L_UCHAR nType, L_UINT32 nLength, L_VOID * pUserData) 
{ 
   UNREFERENCED_PARAMETER(hNet); 
   UNREFERENCED_PARAMETER(nError); 
   UNREFERENCED_PARAMETER(pUserData); 
   UNREFERENCED_PARAMETER(nLength); 
   UNREFERENCED_PARAMETER(nType); 
 
   if(nError == DICOM_SUCCESS) 
      MessageBox(NULL, TEXT("Data was successfully received"), TEXT(""), MB_OK); 
} 
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