lazarus-ccr/components/epiktimer/splash.pas
sekelsenmat bfef8f4584 Adds epiktimer
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@453 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2008-05-22 12:20:58 +00:00

34 lines
448 B
ObjectPascal

unit splash;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, ComCtrls,
StdCtrls;
type
TForm3 = class(TForm)
Label1: TLABEL;
Label2: TLABEL;
Label3: TLABEL;
Label4: TLABEL;
Progressbar1: TPROGRESSBAR;
private
{ private declarations }
public
{ public declarations }
end;
var
Form3: TForm3;
implementation
initialization
{$I splash.lrs}
end.