home *** CD-ROM | disk | FTP | other *** search
- program VerySimple;
- {(C) Alex Demchenko(alex@ritlabs.com)}
-
- uses
- Forms,
- ICQClient in '..\Component\ICQClient.pas', //You can remove this line
- ICQWorks in '..\Component\ICQWorks.pas', //You can remove this line
- ICQDirect in '..\Component\ICQDirect.pas', //You can remove this line
- MySocket in '..\Component\MySocket.pas', //You can remove this line
- Main in 'Main.pas' {Form1};
-
- {$R *.res}
-
- begin
- Application.Initialize;
- Application.CreateForm(TForm1, Form1);
- Application.Run;
- end.
-