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.

Thanks,

Bill Mudd







You can of course simply declare them yourself

Type

PInteger = ^Integer;
PByte = ^Byte;
TIntegerArray = array [0..0] of integer; // range checking OFF please!
PintegerArray = ^Tintegerarray;

It wouldn't hurt to read something about the subject. For example the accompanying documentation?
.




Relevant Pages