You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@3864 8e941d3f-bd1b-0410-a28a-d453659cc2b4
20 lines
384 B
ObjectPascal
20 lines
384 B
ObjectPascal
program user_client;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
cthreads,
|
|
{$ENDIF}{$ENDIF}
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms, laz_synapse
|
|
, umain, RunTimeTypeInfoControls, user_edit_imp;
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TfMain, fMain);
|
|
Application.CreateForm(TfUserEdit, fUserEdit);
|
|
Application.Run;
|
|
end.
|
|
|