mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2024-11-16 00:05:55 +01:00
5c6539e3a9
Added GlobalCEFApp properties with most of the switches defined in cef_switches.cc
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.
|