mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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.
|