summaryrefslogtreecommitdiff
path: root/appl/acme/styxaux.m
diff options
context:
space:
mode:
authorCharles.Forsyth <devnull@localhost>2006-12-22 17:07:39 +0000
committerCharles.Forsyth <devnull@localhost>2006-12-22 17:07:39 +0000
commit37da2899f40661e3e9631e497da8dc59b971cbd0 (patch)
treecbc6d4680e347d906f5fa7fca73214418741df72 /appl/acme/styxaux.m
parent54bc8ff236ac10b3eaa928fd6bcfc0cdb2ba46ae (diff)
20060303a
Diffstat (limited to 'appl/acme/styxaux.m')
-rw-r--r--appl/acme/styxaux.m24
1 files changed, 24 insertions, 0 deletions
diff --git a/appl/acme/styxaux.m b/appl/acme/styxaux.m
new file mode 100644
index 00000000..5cd8f7db
--- /dev/null
+++ b/appl/acme/styxaux.m
@@ -0,0 +1,24 @@
+Styxaux : module {
+ PATH : con "/dis/acme/styxaux.dis";
+
+ init : fn();
+
+ msize: fn(m: ref Styx->Tmsg): int;
+ version: fn(m: ref Styx->Tmsg): string;
+ fid: fn(m: ref Styx->Tmsg): int;
+ uname: fn(m: ref Styx->Tmsg): string;
+ aname: fn(m: ref Styx->Tmsg): string;
+ newfid: fn(m: ref Styx->Tmsg): int;
+ name: fn(m: ref Styx->Tmsg): string;
+ names: fn(m: ref Styx->Tmsg): array of string;
+ mode: fn(m: ref Styx->Tmsg): int;
+ offset: fn(m: ref Styx->Tmsg): big;
+ count: fn(m: ref Styx->Tmsg): int;
+ oldtag: fn(m: ref Styx->Tmsg): int;
+ data: fn(m: ref Styx->Tmsg): array of byte;
+
+ setmode: fn(m: ref Styx->Tmsg, mode: int);
+ setcount: fn(m: ref Styx->Tmsg, count: int);
+ setdata: fn(m: ref Styx->Tmsg, data: array of byte);
+
+};