Function MQPUT

Source
pub unsafe extern "C" fn MQPUT(
    Hconn: MQHCONN,
    Hobj: MQHOBJ,
    MsgDesc: PMQVOID,
    PutMsgOpts: &mut MQPMO,
    BufferLength: MQLONG,
    Buffer: PMQVOID,
    CompCode: &mut MQLONG,
    Reason: &mut MQLONG,
)
Expand description

Put Message

§Arguments

  • Hconn: Connection handle
  • Hobj: Object handle
  • MsgDesc (Input/Output): Message descriptor
  • PutMsgOpts (Input/Output): Options that control the action of MQPUT
  • BufferLength: Length of the message in Buffer
  • Buffer: Message data
  • CompCode (Output): Completion code
  • Reason (Output): Reason code qualifying CompCode

§References