You are not logged in.
Hi,
/// binary access to an unsigned 32-bit value (4 bytes in memory)
TDWordRec = record
case integer of
0: (V: DWord);
1: (L,H: word);
2: (B: array[0..7] of byte); <=== shouldn't it array[0..3] of byte?
end;
Is this commit okay?
Thanks.
Offline
You are right!
Offline