blob: 61107d20c974e1b2fbac3c8b08c9e060a418e449 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
FBrowse : module
{
PATH: con "/dis/grid/lib/fbrowse.dis";
NOTHING: con 0;
RUN: con 1;
OPEN: con 2;
WRITE: con 3;
ERROR: con -1;
init : fn (ctxt : ref Draw->Context, title, root, currdir: string): string;
readpath : fn (dir: Browser->File): (array of ref sys->Dir, int);
};
|