2007-03-18 22:38:02 +00:00
|
|
|
program images;
|
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
2013-09-07 19:08:28 +00:00
|
|
|
{.$define DEBUG_VTV}
|
2008-04-10 03:06:03 +00:00
|
|
|
|
2007-03-18 22:38:02 +00:00
|
|
|
uses
|
|
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
|
|
cthreads,
|
|
|
|
{$ENDIF}{$ENDIF}
|
|
|
|
Interfaces, // this includes the LCL widgetset
|
|
|
|
Forms
|
2008-04-10 03:06:03 +00:00
|
|
|
{ add your units here }, Unit1
|
|
|
|
{$ifdef DEBUG_VTV}
|
|
|
|
,ipcchannel, vtlogger
|
|
|
|
{$endif}
|
|
|
|
;
|
2007-03-18 22:38:02 +00:00
|
|
|
|
2015-05-17 12:56:01 +00:00
|
|
|
{$R *.res}
|
|
|
|
|
2007-03-18 22:38:02 +00:00
|
|
|
begin
|
2008-04-10 03:06:03 +00:00
|
|
|
{$ifdef DEBUG_VTV}
|
|
|
|
Logger.Channels.Add(TIPCChannel.Create);
|
|
|
|
Logger.Clear;
|
|
|
|
Logger.ActiveClasses := [lcHeaderOffset];
|
|
|
|
{$endif}
|
|
|
|
|
2007-03-18 22:38:02 +00:00
|
|
|
Application.Initialize;
|
|
|
|
Application.CreateForm(TForm1, Form1);
|
|
|
|
Application.Run;
|
|
|
|
end.
|
|
|
|
|