mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2024-11-16 00:05:55 +01:00
16 lines
247 B
ObjectPascal
16 lines
247 B
ObjectPascal
|
program CopyCEFDlls;
|
||
|
|
||
|
uses
|
||
|
Vcl.Forms,
|
||
|
Unit1 in 'Unit1.pas' {Form1},
|
||
|
Utils in 'Utils.pas';
|
||
|
|
||
|
{$R *.res}
|
||
|
|
||
|
begin
|
||
|
Application.Initialize;
|
||
|
Application.MainFormOnTaskbar := True;
|
||
|
Application.CreateForm(TForm1, Form1);
|
||
|
Application.Run;
|
||
|
end.
|