Home
Initial values and language declarations
Table 22. Initial values of fields in MQBO Field name Name of constant Value of constant StrucId MQBO_STRUC_ID 'BO '
Version MQBO_VERSION_1 1
Options MQBO_NONE 0
Notes:
- The symbol represents a single blank character.
- In the C programming language, the macro variable MQBO_DEFAULT contains the values listed above. Use it in the following way to provide initial values for the fields in the structure:
MQBO MyBO = {MQBO_DEFAULT};
Home