From b1993e41ef35eb327e326ee2607736bfb7982154 Mon Sep 17 00:00:00 2001 From: Vadim Dashevskiy Date: Tue, 17 Dec 2013 12:56:15 +0000 Subject: source code of replacer.exe - http://forum.miranda-ng.org/index.php?topic=117.0 git-svn-id: http://svn.miranda-ng.org/main/trunk@7263 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- tools/replacer/replacer.lpr | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 tools/replacer/replacer.lpr (limited to 'tools/replacer/replacer.lpr') diff --git a/tools/replacer/replacer.lpr b/tools/replacer/replacer.lpr new file mode 100644 index 0000000000..f81d096866 --- /dev/null +++ b/tools/replacer/replacer.lpr @@ -0,0 +1,21 @@ +program replacer; + +{$mode objfpc}{$H+} + +uses + {$IFDEF UNIX}{$IFDEF UseCThreads} + cthreads, + {$ENDIF}{$ENDIF} + Interfaces, // this includes the LCL widgetset + Forms, Unit1 + { you can add units after this }; + +{$R *.res} + +begin + RequireDerivedFormResource := True; + Application.Initialize; + Application.CreateForm(TForm1, Form1); + Application.Run; +end. + -- cgit v1.2.3