mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2024-11-16 08:15:55 +01:00
9e5b90303c
Remove unused uCEFSentinel references. Remove duplicated licenses.
36 lines
633 B
ObjectPascal
36 lines
633 B
ObjectPascal
program MediaRouter;
|
|
|
|
{$MODE Delphi}
|
|
|
|
{$I ..\..\..\source\cef.inc}
|
|
|
|
uses
|
|
{$IFDEF DELPHI16_UP}
|
|
Vcl.Forms,
|
|
WinApi.Windows,
|
|
{$ELSE}
|
|
Windows,
|
|
Forms,
|
|
LCLIntf, LCLType, LMessages, Interfaces,
|
|
{$ENDIF }
|
|
uCEFApplication,
|
|
uMediaRouterFrm in 'uMediaRouterFrm.pas' {MediaRouterFrm};
|
|
|
|
{.$R *.res}
|
|
|
|
{$SetPEFlags IMAGE_FILE_LARGE_ADDRESS_AWARE}
|
|
|
|
begin
|
|
CreateGlobalCEFApp;
|
|
|
|
if GlobalCEFApp.StartMainProcess then
|
|
begin
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.CreateForm(TMediaRouterFrm, MediaRouterFrm);
|
|
Application.Run;
|
|
end;
|
|
|
|
DestroyGlobalCEFApp;
|
|
end.
|