
  TYPE
    llt$command_description = SEQ ( * );

  TYPE
    llt$command_desc_contents = record
      version: 0 .. 255 {allows future changes} ,
      case system_command: boolean of
      = TRUE =
        system_command_name: pmt$program_name,
      = FALSE =
        starting_procedure: pmt$program_name,
        library_path_size: fst$path_size,

{ If the library_path_size field is non-zero, an fst$file_reference
{ of the specified size immediately follows this record in the
{ llt$command_description SEQuence.
{ If the library_path_size field is zero, no library was specified
{ in the description.

      casend,
    recend;

  CONST
    llc$command_desc_version = 1;

*copyc fst$file_reference
*copyc fst$path_size
*copyc pmt$program_name
