Data Fields | |
MQEVERSION | version |
MQEVOID * | pExceptBlock |
MQERETURN MQEDYNFUNC( | fPtrRead )(MQeMasterCommsAdapterHndl, MQeMasterCommsAdapterRead_in_ *, MQeMasterCommsAdapterRead_out_ *) |
MQERETURN MQEDYNFUNC( | fPtrWrite )(MQeMasterCommsAdapterHndl, MQeMasterCommsAdapterWrite_in_ *, MQeMasterCommsAdapterWrite_out_ *) |
MQERETURN MQEDYNFUNC( | fPtrFree )(MQeMasterCommsAdapterHndl, MQeMasterCommsAdapterFree_in_ *, MQeMasterCommsAdapterFree_out_ *) |
MQEVOID * | pPrivateData |
|
MQEVERSION containing the version of this structure. |
|
Void pointer to an error structure to return error information to caller. This needs to be cast the the ExceptBlock within the function. The return and reason code are up to the user and should be from MQERETURN_USER_BASE upwards. See MQe_Native_ReturnCodes.h |
|
The name of the read function for this adapter. The read function will take as its parameters a MQeMasterCommsAdapterHndl, a pointer to a MQeMasterCommsAdapterRead_in_ structure and a pointer to a MQeMasterCommsAdapterRead_out_ structure. |
|
The name of the write function for this adapter. The write function will take as its parameters a MQeMasterCommsAdapterHndl, a pointer to a MQeMasterCommsAdapterWrite_in_ structure and a pointer to a MQeMasterCommsAdapterWrite_out_ structure. |
|
The name of the free function for this adapter. The free function will take as its parameters a MQeMasterCommsAdapterHndl, a pointer to a MQeMasterCommsAdapterFree_in_ structure and a pointer to a MQeMasterCommsAdapterFree_out_ structure. |
|
A pointer to the structure containing the data specific to this instance of the adapter. This should be cast to the relevant structure for the adapter. |