makeDynBit64()
Returns a dynamic field of 64 bit streams.
Synopsis
 dyn_bit64 makeDynBit64([bit64 x1, bit64 x2 ...]);
Parameters
| Parameter | Description | 
|---|---|
| x1, x2, ... | Individual elements | 
Return value
In the event of an error, the function returns an empty field.
Description
Returns a dynamic field of 64 bit streams with the elements x1, x2 and so on.
Example
main()
{
  dyn_bit64 b64;
  b64 =
  makeDynBit64(0,0xFFFFFFFFFFFFFFFFul,0xF0F0F0F0F0F0F0F0ul);
  DebugN(b64);
}
        Assignment
Availability
CTRL
