Re: Does Fast Code units compile in D5 Standard ?



bill wrote:
I have D5 Standard and the D5 compatible units
for FastcodeCPUID.pas and FastMove.pas.
but I still get 'Undeclared identifier' compile
errors for PInteger, PByte, PIntegerArray, etc. in
FastcodeAnsiStringReplace and others.

These types are simple to declare:

Types
 PIyte=^byte;
 PInteger=^integer;
 PIntegerArray=^array[0..0] of integer; (Or possibly ^array of integer).

etc.. etc..

Cheers,
Nicholas Sherlock
.



Relevant Pages