{* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Author:       Alexander Vaga
EMail:        primary:   icq2000cc@hobi.ru
              secondary: alexander_vaga@hotmail.com
Creation:     May, 2002
Legal issues: Copyright (C) 2002 by Alexander Vaga
              Kyiv, Ukraine

              This software is provided 'as-is', without any express or
              implied warranty.  In no event will the author be held liable
              for any  damages arising from the use of this software.

              Permission is granted to anyone to use this software for any
              purpose, including commercial applications, and to alter it
              and redistribute it freely.
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *}

program nICQ;

uses
  Forms,
  main in 'main.pas' {Form1},
  Packet in 'Packet.pas',
  SendMess in 'SendMess.pas' {MessageTo},
  types in 'Types.pas',
  MessFrom in 'MessFrom.pas' {MessageFrom};

{$R *.RES}

begin
  Application.Initialize;
  Application.Title := 'nICQ';
  Application.CreateForm(TForm1, Form1);
  Application.Run;
end.
