
{ Information needed to identify a file system object.
{
{ VARIANT_PATH:  a record specifying a pointer to either the path or the
{       complete path of the file system object.
{ OBJECT_TYPE:  specifies the object type.
{ CYCLE_SELECTOR_P:  a pointer to a cycle selector record.  If the cycle
{       selector cannot be determined, a NIL pointer should be specified.
{ DEVICE_CLASS:  specifies the device class on which the cycle resides.

  TYPE
    sft$audited_fs_object_id = record
      variant_path: pft$variant_path,
      case object_type: sft$audited_fs_object_type of
      = sfc$afsot_catalog =
        ,
      = sfc$afsot_file =
        ,
      = sfc$afsot_cycle =
        cycle_selector_p: ^pft$cycle_selector,
        device_class: rmt$device_class,
      casend,
    recend;

*copyc pft$cycle_selector
*copyc pft$variant_path
*copyc rmt$device_class
*copyc sft$audited_fs_object_type
