mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-15 04:00:12 +01:00
15 lines
234 B
ObjectPascal
15 lines
234 B
ObjectPascal
|
program webbrowser;
|
||
|
|
||
|
uses
|
||
|
Forms,
|
||
|
SHDocVw_TLB in '..\..\Imports\SHDocVw_TLB.pas',
|
||
|
form in 'form.pas' {MainForm};
|
||
|
|
||
|
{$R *.RES}
|
||
|
|
||
|
begin
|
||
|
Application.Initialize;
|
||
|
Application.CreateForm(TMainForm, MainForm);
|
||
|
Application.Run;
|
||
|
end.
|