Writes data in a hex string form into a binary buffer.
BinaryPokeHex( handle, offset, hex-string )
(i) handle: handle of buffer.
(i) offset: zero-based offset in the buffer to store string.
(s) hex-string: is a hex string, containing 2 hex characters for each byte that will be written to the buffer.
(i) number of bytes stored.
binbuf=BinaryAlloc(1) BinaryPokeHex( binbuf, 0, "41" ) ret=BinaryPeekStr( binbuf, 0, 1) Message("Hmmm", "String value of hex 41 is %ret%" ) Exit
Binary Operations, BinaryPeekHex, BinaryCopy, BinaryPeek, BinaryPeekStr, BinaryPoke