WriteByte(id, b[, flags])
id
at
the current file cursor position which you can modify by using the
Seek() command. WriteByte()
will advance the file cursor
position by one byte.
The flags
parameter may be set to one of the following flags:
#IO_UNSIGNED:
b
must be between
0 and 255. This is the default.
#IO_SIGNED:
b
must be between -128 and 127.
#IO_UNSIGNED
) (V9.0)