Situation:
Procedure ZeroLargeRecord(var Data : tLargeRecord);
// tLargeRecord contains a lot of integers and one dynamic array
Var Temp : tLargeRecord;
Begin
Move(Data, Temp, SizeOf(Data)); // Save a copy of the dynamic array pointer
FillChar(Data, SizeOf(Data), 0); // Works as...
I'm trying to send data from a Borland Pascal program to a Delphi program. The data is of variable size up to 4k. The problem is I want to do this fast--I'm hoping for 100ms.
What I've tried:
Writing to a file and reading it on the Delphi side. This works but the timing isn't...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.