
  TYPE
    ost$mtm_condition_name = record
      name: ost$status_condition_name,
*IF NOT $true(osv$unix)
      template: REL (ost$message_template_module) ^ost$message_template,
      case kind: ost$message_template_kind of
      = osc$status_message =
        code: ost$status_condition_code,
        severity: ost$message_module_severity,
      = osc$brief_help, osc$full_help =
        { For these message kinds the name field is set to osc$null_name. } ,
      = osc$parameter_prompt, osc$parameter_assistance_prompt,
            osc$parameter_help =
        ,
      = osc$application_menu =
        { For this message kind the template field, above, is not used. }
        { Instead the following field is used to locate the menu data. }
        menu_header: REL (ost$message_template_module) ^ost$mtm_menu_header,
      casend,
*ELSE
      code: ost$status_condition_code,
      severity: ost$message_module_severity,
      template: string (256),
*IFEND
    recend;

*copyc ost$message_template
*copyc ost$message_template_kind
*copyc ost$message_template_module
*IF NOT $true(osv$unix)
*copyc ost$mtm_menu_header
*IFEND
*copyc ost$status_condition_code
*copyc ost$status_condition_name
*copyc ost$message_module_severity
