diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-12-19 12:52:06 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-12-19 12:52:06 +0000 |
commit | d318d9f39934e77e9629a55083297a3d5f68ebcd (patch) | |
tree | 5b246af7ea6fb2b20c63fc3ae7b9a6a0567c77c1 /tools/langpackmgr/langpackmgr.lpr | |
parent | 5b6cb248511f922818a92dcc613ddbf08ec96dc9 (diff) |
LangPackMgr and replacer tools update (from Jebifor)
git-svn-id: http://svn.miranda-ng.org/main/trunk@7282 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'tools/langpackmgr/langpackmgr.lpr')
-rw-r--r-- | tools/langpackmgr/langpackmgr.lpr | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tools/langpackmgr/langpackmgr.lpr b/tools/langpackmgr/langpackmgr.lpr new file mode 100644 index 0000000000..2de2b5decd --- /dev/null +++ b/tools/langpackmgr/langpackmgr.lpr @@ -0,0 +1,21 @@ +program langpackmgr;
+
+{$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.
+
|