Function MQGET

Source
pub unsafe extern "C" fn MQGET(
    Hconn: MQHCONN,
    Hobj: MQHOBJ,
    MsgDesc: PMQVOID,
    GetMsgOpts: &mut MQGMO,
    BufferLength: MQLONG,
    Buffer: PMQVOID,
    DataLength: &mut MQLONG,
    CompCode: &mut MQLONG,
    Reason: &mut MQLONG,
)
Expand description

Get Message

§Arguments

  • Hconn: Connection handle
  • Hobj: Object handle
  • MsgDesc (Input/Output): Message descriptor
  • GetMsgOpts (Input/Output): Options that control the action of MQGET
  • BufferLength: Length in bytes of the Buffer area
  • Buffer (Output): Area to contain the message data
  • DataLength (Output): Length of the message
  • CompCode (Output): Completion code
  • Reason (Output): Reason code qualifying CompCode

§References