|   PathUtilsThe PathUtils module provides an interface to manipulate system variables used as path variables by FileSwitch. That is, variables ending '$Path' which are used as references to multiple paths in filenames. SWIs for PathUtilsPathUtils_EnumeratePath (SWI &56B80)On entry   R0 = flags :
         bit 0 = if set, return all components of the path recursively,
                 if clear, just return the leaf components
         bits 1-31 reserved (must be 0)
   R1 = pointer to path to process
   R2 = pointer to output buffer
   R3 = maximum length of buffer, or 0 to request length
   R4 = last context, or 0 for the first callOn exit   R0-R2 preserved
   R3 = number of spare bytes, or -ve length required if 0 on entry
   R4 = new context, or -1 if complete
   R5 = variable type that this value was expanded from
   R6 = depth expanded from This SWI is used to enumerate the components of a path variables. If R0 bit 0 is set, path components will be recursively expanded until a terminal path is found. PathUtils_JoinPath (SWI &56B81)On entry   R0 = flags
         bit 0 = if set, append, if clear, prepend
         bits 1-31 reserved (must be 0)
   R1 = pointer to path variable name
   R2 = pointer to value to joinOn exit   All registers preserved This SWI is used to add a component to a path variable. The path variable will be checked to ensure that the component is not already present. The component will be added to the end of the start of the variable, depending on the state of R0 bit 0. PathUtils_RemovePath (SWI &56B82)On entry   R0 = flags (must be 0)
   R1 = pointer to path variable name
   R2 = pointer to value to remove On exit   All registers preserved This SWI is used to remove a component from a path variable. If the component is not present, no error will be raised.  |