source upload
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
program Project20Client;
|
||||
|
||||
// first line of uses clause must be {$I SynDprUses.inc}
|
||||
uses
|
||||
{$I SynDprUses.inc}
|
||||
Forms,
|
||||
{$ifdef FPC}
|
||||
Interfaces,
|
||||
{$endif}
|
||||
Project20ClientMain in 'Project20ClientMain.pas' {Form1},
|
||||
Project20Interface in 'Project20Interface.pas';
|
||||
|
||||
{$ifndef FPC}
|
||||
{$R *.res}
|
||||
{$endif}
|
||||
|
||||
begin
|
||||
Application.Initialize;
|
||||
Application.CreateForm(TForm1, Form1);
|
||||
Application.Run;
|
||||
end.
|
Reference in New Issue
Block a user