Archived
1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
delphi-pbe/PBE.dpr
2004-12-08 09:33:37 +00:00

15 lines
229 B
ObjectPascal

program PBE;
uses
Forms,
PBE_U in 'PBE_U.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.Title := 'PhoneBackup Editor';
Application.CreateForm(TForm1, Form1);
Application.Run;
end.