Home

 

Structure definition in C

typedef struct tagMQRFH {
  MQCHAR4  StrucId;         /* Structure identifier */
  MQLONG   Version;         /* Structure version number */
  MQLONG   StrucLength;     /* Total length of MQRFH including string
                               containing name/value pairs */
  MQLONG   Encoding;        /* Numeric encoding */
  MQLONG   CodedCharSetId;  /* Coded character set identifier */
  MQCHAR8  Format;          /* Format name */
  MQLONG   Flags;           /* Flags */
 } MQRFH;


 

Home