Let\'s say I have this declaration:
TYPE RDisk= packed record R2: array[1..1024] of Byte; etc etc end;
How do I initialize R2 t
You can initialize an array with zero using this
ZeroMemory(@R2[0],length(R2));
or this
FillChar(R2[0],length(R2),0);