mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-10 03:28:11 +02:00
27 lines
492 B
ObjectPascal
27 lines
492 B
ObjectPascal
program uiassist;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}
|
|
cthreads,
|
|
{$ENDIF}
|
|
{$IFDEF HASAMIGA}
|
|
athreads,
|
|
{$ENDIF}
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms, frmmain, chatcontrol, typingindicator
|
|
{ you can add units after this };
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
RequireDerivedFormResource:=True;
|
|
Application.Scaled:=True;
|
|
Application.{%H-}MainFormOnTaskbar:=True;
|
|
Application.Initialize;
|
|
Application.CreateForm(TMainChatForm, MainChatForm);
|
|
Application.Run;
|
|
end.
|
|
|