

XXbbWW  --  tthhee  XX1111  uusseerr  iinntteerrffaaccee  wwiitthhoouutt  ''bbeellllss  aanndd  wwhhiissttlleess''


            (C) 1994 Hendrik Maroske

UUssee  aanndd  ddiissttrriibbuuttiioonn  rreessttrriicctteedd  ttoo  tthhee  ffoolllloowwiinngg::

This program is free as long as you do not make
money by selling it. In any other case, you are
enforced to contact the author.

I don't care if you create user interfaces with
this program and sell tthheemm, als long as you
do not sell this program. You are enforced to
distribute this program in the same form
you have received it; especially in combination
with user interfaces that you sell.

I will distribute C sources as soon as I can.
Until then, you will have to rely on the library
file only, sorry.


commands.mta
XXbbWW  CCoommmmaannddss::


FFuunnccttiioonn::  ""ss""  AAdddd  SSttrriinngg  VVAARR--EElleemmeenntt))

          3 Parameters
Syntax:   s( ("VAR-Type") <Length> ("Content") );

Params:   VAR-Type is a string, max. 15 chars ("Name")
          Length gives the string space in bytes
          Content is a string with the content to put in
Sample:   "s"( myname 80 ("Text with spaces") );

FFuunnccttiioonn::  ""ii""  AAdddd  IInntteeggeerr  VVAARR--EElleemmeenntt))

          2 Parameters
Syntax:   i( ("VAR-Type") <Content> );

Params:   VAR-Type is a string, max. 15 chars ("Name")
          Content is an integer number to put in
Sample:   "i"( myname 1234 );

FFuunnccttiioonn::  ""cc""  AAdddd  CCoonnssttaanntt  SSttrriinngg  VVAARR--EElleemmeenntt))

          2 Parameters
Syntax:   c( ("VAR-Type") ("Content") );

Params:   VAR-Type is a string, max. 15 chars ("Name")
          Content is a string with the content to put in
          Length is determined by content length
Sample:   "c"( myname ("Text with spaces") );

FFuunnccttiioonn::  ""dd""  AAdddd  DDoouubbllee  VVAARR--EElleemmeenntt))

          2 Parameters
Syntax:   d( ("VAR-Type") <Content> );

Params:   VAR-Type is a string, max. 15 chars ("Name")
          Content is a floating point number to put in
Sample:   "d"( myname 1.234 );


