1FSproto: module 2{ 3 PATH: con "/dis/lib/fsproto.dis"; 4 5 Direntry: type (string, string, ref Sys->Dir); 6 7 init: fn(): string; 8 readprotofile: fn(proto: string, root: string, entries: chan of Direntry, warnings: chan of (string, string)): string; 9 readprotostring: fn(proto: string, root: string, entries: chan of Direntry, warnings: chan of (string, string)); 10}; 11