When using this great lib in Delphi XE5 I get this error:
[dcc32 Error] CCR.Exif.pas(3872): E2441 Inline function declared in interface
section must not use local symbol 'IsGraphicEmpty'
What is the expected output? What do you see instead?
I was able to solve this by adding this part to the interface section:
{$IF Declared(TGraphic)}
function IsGraphicEmpty(AGraphic: TGraphic): Boolean; inline;
{$ENDIF}
I do not know if this is the right way but it worked for me.
Original issue reported on code.google.com by martijn....@gmail.com on 9 Jan 2014 at 10:09
Original issue reported on code.google.com by
martijn....@gmail.com
on 9 Jan 2014 at 10:09