Sets eight byte(64-bit) data to array.
If new data is set at the end of array, data is appended, otherwise it is overwritten.
array_setdata64(hnd, pos, data);
hnd = array_new(); array_setdata64(hnd, 0, 0x0001020304050607, 0x0011121314151617); result = array_printdata(hnd); array_delete(hnd);
result:
16; 0x07, 0x06, 0x05, 0x04, 0x03, 0x02, 0x01, 0x00, 0x17, 0x16, 0x15, 0x14, 0x13, 0x12, 0x11, 0x00