<> <> <> <> DIRECTORY BasicTime USING [GMT, nullGMT], FS USING [OpenFile], Rope USING [ROPE]; AMFiles: CEDAR DEFINITIONS = BEGIN OPEN BasicTime, FS, Rope; pathPrefixes: LIST OF ROPE; <" The last entry on this list is always "///">> PrependPathPrefix: PROC [pathPrefix: ROPE]; <">> FullFileName: PROC [shortName: ROPE, createTime: GMT _ nullGMT] RETURNS [fullName: ROPE]; <> FullFileNameList: PROC [shortName: ROPE, createTime: GMT _ nullGMT] RETURNS[fullName: LIST OF ROPE]; <> <<>> OpenIt: PROC [shortName: ROPE, createTime: GMT _ nullGMT] RETURNS [fullName: ROPE, openFile: OpenFile]; <> END.