Wha's equivalent in Delphi of this c++ sintaxe?
See that i variable is incremented before.
for(int i = 0; i < 20; ++i)
Thanks in advance.
EDIT:
In my case, this is how ++i is used with sintaxe above:
void testStruct *testMethod()
{
for(int i = 0; i < 20; ++i)
{
if(values[i].id == (DWORD) 10)
return &values[i];
}
return NULL;
}