From 68a6edd06db2646188d132ebe5e929963a14a91c Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Thu, 4 Oct 2018 09:20:20 +0200 Subject: debug-Versionen neu --- raetsel.lpr | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'raetsel.lpr') diff --git a/raetsel.lpr b/raetsel.lpr index 672f9ca..720aa2b 100644 --- a/raetsel.lpr +++ b/raetsel.lpr @@ -12,9 +12,21 @@ uses {$R *.res} begin + {$IFDEF DEBUG} + writeln('Anfang'); + {$ENDIF} requireDerivedFormResource:=true; application.initialize; + {$IFDEF DEBUG} + writeln('application.initialize;'); + {$ENDIF} application.createForm(tForm1, form1); + {$IFDEF DEBUG} + writeln('application.createForm(tForm1, form1);'); + {$ENDIF} application.run; + {$IFDEF DEBUG} + writeln('application.run;'); + {$ENDIF} end. -- cgit v1.2.3-54-g00ecf