Hi.
I'm trying to make this function faster:
//Global variables
Positions: array of Integer;
ItemSize: array of Byte;
AllStrings: AnsiString;
FPosStep = 32;
FPosStepBinPwr = 5;
function TShortStringArray.GetItem(const Idx: Integer): AnsiString;
var
i, d, Position: Integer;
begin
if...
Hi.
I want to make my code work in any Delphi version.
For this I use compiler directives. But the compiler is still not happy 100%.
{$IF Defined(Ver80) or
Defined(Ver90) or
Defined(Ver100) or
Defined(Ver120) or
Defined(Ver130) or
Defined(Ver140) or
Defined(Ver150) or...
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.