You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@8707 8e941d3f-bd1b-0410-a28a-d453659cc2b4
22 lines
374 B
ObjectPascal
22 lines
374 B
ObjectPascal
program Registration;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
Interfaces,
|
|
Forms,
|
|
reg_main in 'reg_main.pas' {regMain},
|
|
uni_RegCommon in 'uni_RegCommon.pas',
|
|
frm_Readme in 'frm_Readme.pas' {frmReadme}, tponguard;
|
|
|
|
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TregMain, regMain);
|
|
Application.CreateForm(TfrmReadme, frmReadme);
|
|
Application.Run;
|
|
end.
|