Files
lazarus-ccr/components/virtualtreeview-new/branches/4.8/demos/vtbasic/vtbasic.lpr
blikblum c84dd357ac demos: update project files
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2565 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2012-10-16 23:54:01 +00:00

30 lines
515 B
ObjectPascal

program vtbasic;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms
{ add your units here }, Main
{$ifdef DEBUG_VTV}
,vtlogger, ipcchannel
{$endif}
;
{$R *.res}
begin
{$ifdef DEBUG_VTV}
Logger.Channels.Add(TIPCChannel.Create);
Logger.Clear;
Logger.ActiveClasses := [lcScroll, lcWarning];
{$endif}
Application.Initialize;
Application.CreateForm(TfrmMain, frmMain);
Application.Run;
end.