dazappa007
Programmer
Code:
function protectInt(intnumb,tuInt,theRandd:integer):pchar; stdcall;
var mypchar:pchar;
begin
protInts[intnumb]:=tuInt*theRandd;
intMult[intnumb]:=theRandd; //can just ignore this line
strpcopy(mypchar,inttostr(protInts[intnumb]));
Result:=mypchar;
end;