home *** CD-ROM | disk | FTP | other *** search
/ Freelog 11 / Freelog011.iso / BestOf / PhoenixMail / Source / langkit / LangKit.dpr < prev    next >
Text File  |  1999-02-10  |  2KB  |  49 lines

  1. {*****************************************************************************
  2.  *
  3.  *  LangKit.dpr - Phoenix Mail Language Kit
  4.  *
  5.  *  Copyright (c) 1998-99 Michael Haller
  6.  *
  7.  *  Author:     Michael Haller
  8.  *  E-mail:     michael@discountdrive.com
  9.  *  Homepage:   http://www.discountdrive.com/sunrise
  10.  *
  11.  *  This program is free software; you can redistribute it and/or
  12.  *  modify it under the terms of the GNU General Public License
  13.  *  as published by the Free Software Foundation;
  14.  *
  15.  *  This program is distributed in the hope that it will be useful,
  16.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  *  GNU General Public License for more details.
  19.  *
  20.  *  You should have received a copy of the GNU General Public License
  21.  *  along with this program; if not, write to the Free Software
  22.  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA
  23.  *
  24.  *----------------------------------------------------------------------------
  25.  *
  26.  *  Revision history:
  27.  *
  28.  *     DATE     REV                 DESCRIPTION
  29.  *  ----------- --- ----------------------------------------------------------
  30.  *
  31.  *****************************************************************************}
  32.  
  33. program LangKit;
  34.  
  35. uses
  36.   Forms,
  37.   Main in 'Main.pas' {MainForm};
  38.  
  39. {$R *.RES}
  40.  
  41. begin
  42.   Application.Initialize;
  43.   Application.Title := 'Phoenix Mail Language Kit 1.01';
  44.   Application.CreateForm(TMainForm, MainForm);
  45.   MainForm.Show;
  46.   if MainForm.InteractWithPhoenix = False then Exit;
  47.   Application.Run;
  48. end.
  49.