lazarus/examples/trayicon/wndtray.dpr
sekelsenmat c5ae780008 Improves the TTrayIcon example
git-svn-id: trunk@15174 -
2008-05-18 12:05:10 +00:00

42 lines
1.2 KiB
ObjectPascal

{
wndtray.dpr
*****************************************************************************
* *
* This demonstration program is public domain, witch means no copyright, *
* but also no warranty! *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
* *
*****************************************************************************
Author: Felipe Monteiro de Carvalho
}
program wndtray;
{$ifdef fpc}
{$mode objfpc}{$H+}
{$endif}
uses
{$ifdef fpc}
Interfaces,
{$endif}
Forms,
frmtest in 'frmtest.pas';
{ add your units here }
{$ifdef Windows}
{$R magnifier.res}
{$endif}
begin
Application.Initialize;
Application.CreateForm(TfrmTrayTest, frmTrayTest);
Application.Run;
end.