diff options
| author | Charles.Forsyth <devnull@localhost> | 2006-12-22 17:07:39 +0000 |
|---|---|---|
| committer | Charles.Forsyth <devnull@localhost> | 2006-12-22 17:07:39 +0000 |
| commit | 37da2899f40661e3e9631e497da8dc59b971cbd0 (patch) | |
| tree | cbc6d4680e347d906f5fa7fca73214418741df72 /appl/acme/acme.m | |
| parent | 54bc8ff236ac10b3eaa928fd6bcfc0cdb2ba46ae (diff) | |
20060303a
Diffstat (limited to 'appl/acme/acme.m')
| -rw-r--r-- | appl/acme/acme.m | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/appl/acme/acme.m b/appl/acme/acme.m new file mode 100644 index 00000000..bbd586f0 --- /dev/null +++ b/appl/acme/acme.m @@ -0,0 +1,32 @@ +Acme : module { + PATH : con "/dis/acme.dis"; + + RELEASECOPY : con 1; + + M_LBUT : con 1; + M_MBUT : con 2; + M_RBUT : con 4; + M_TBS : con 8; + M_PLUMB : con 16; + M_QUIT : con 32; + M_HELP : con 64; + M_RESIZE : con 128; + M_DOUBLE : con 256; + + textcols, tagcols : array of ref Draw->Image; + but2col, but3col, but2colt, but3colt : ref Draw->Image; + + acmectxt : ref Draw->Context; + keyboardpid, mousepid, timerpid, fsyspid : int; + fontnames : array of string; + wdir : string; + + init : fn(ctxt : ref Draw->Context, argv : list of string); + timing : fn(s : string); + frgetmouse : fn(); + get : fn(p, q, r : int, b : string) : ref Dat->Reffont; + close : fn(r : ref Dat->Reffont); + acmeexit : fn(err : string); + getsnarf : fn(); + putsnarf : fn(); +};
\ No newline at end of file |
