Function MQSETMP

Source
pub unsafe extern "C" fn MQSETMP(
    Hconn: MQHCONN,
    Hmsg: MQHMSG,
    SetPropOpts: &MQSMPO,
    Name: &MQCHARV,
    PropDesc: &mut MQPD,
    Type: MQLONG,
    ValueLength: MQLONG,
    Value: PMQVOID,
    CompCode: &mut MQLONG,
    Reason: &mut MQLONG,
)
Expand description

Set Message Property

§Arguments

  • Hconn: Connection handle
  • Hmsg: Message handle
  • SetPropOpts: Options that control the action of MQSETMP
  • Name: Property name
  • PropDesc (Input/Output): Property descriptor
  • Type: Property data type
  • ValueLength: Length of the Value area
  • Value: Property value
  • CompCode (Output): Completion code
  • Reason (Output): Reason code qualifying CompCode

§References