Function MQSET

Source
pub unsafe extern "C" fn MQSET(
    Hconn: MQHCONN,
    Hobj: MQHOBJ,
    SelectorCount: MQLONG,
    Selectors: PMQLONG,
    IntAttrCount: MQLONG,
    IntAttrs: PMQLONG,
    CharAttrLength: MQLONG,
    CharAttrs: PMQCHAR,
    CompCode: &mut MQLONG,
    Reason: &mut MQLONG,
)
Expand description

Set Object Attributes

§Arguments

  • Hconn: Connection handle
  • Hobj: Object handle
  • SelectorCount: Count of selectors
  • Selectors: Array of attribute selectors
  • IntAttrCount: Count of integer attributes
  • IntAttrs: Array of integer attributes
  • CharAttrLength: Length of character attributes buffer
  • CharAttrs: Character attributes
  • CompCode (Output): Completion code
  • Reason (Output): Reason code qualifying CompCode

§References