I ues a 3dpart component in delphi , now i need to convert some code from delphi to lazarus.
In delphi there has this code ,It could not work in lazarus.
C := AnsiStrIComp(PChar( TJvInterpreterIdentifier(List).Identifier), PChar(Identifier));
so I change to this way
C := AnsiStrIComp(PChar( TJvInterpreterIdentifier(@List).Identifier), PChar(Identifier));
it can complie now , but when run to this code , application will crashed.
thanks a lot