W. D. said: > A_RecordPtr: ^SomeRecordType; > (A_RecordPtr[i].SomeBoolFunc(TransposeByteOrder(*(uint32*)&pAuthDB[j].DBID))) > How can I handle this without getting the dreaded > "Array Type Required" error?
By declaring a type foo:array of SomeRecordType, and assigning the start of the array to it. C treats pointers and arrays as identical, but Pascal doesn't (it's more strongly typed as well as less case sensitive). Moz __________________________________________________ Delphi-Talk mailing list -> [email protected] http://www.elists.org/mailman/listinfo/delphi-talk
