WriteShort(id, short[, flags])
id
at the current file cursor position which you can modify by using the
Seek() command. Since a short integer is 16-bit, the file
cursor will be advanced by 2 bytes.
The flags
parameter may be a combination of the following flags:
#IO_UNSIGNED:
short
must be in the range of 0 to 65535.
This is the default.
#IO_SIGNED:
short
must be in the range of -32768 to 32767.
#IO_LITTLEENDIAN:
#IO_UNSIGNED
) (V9.0)