Ghostscript-API-Wrapper
Ghostscript-API-Wrapper copied to clipboard
Mode in Lazarus missing
Situation: opened Lazarus demo
Expected: Demo compiles
Experienced: event handler assignment causes issue (in ObjFPC, it would have to be := @methodname, not just := methodname).
Solution: add {$MODE Delphi} right after header to Main.pas.
diff --git "a/Examples/Lazarus/Main.pas" "b/Examples/Lazarus/Main.pas"
index e754ce0..87cc9b4 100644
--- "a/Examples/Lazarus/Main.pas"
+++ "b/Examples/Lazarus/Main.pas"
@@ -25,6 +25,8 @@
{ }
{******************************************************************************}
+{$MODE Delphi}
+
unit Main;
interface