mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2024-11-16 16:25:57 +01:00
23 lines
772 B
ObjectPascal
23 lines
772 B
ObjectPascal
|
{*******************************************************}
|
||
|
{ }
|
||
|
{ Linux FireMonkey Platform }
|
||
|
{ }
|
||
|
{ Copyright(c) 2017-2019 Eugene Kryukov. }
|
||
|
{ All rights reserved }
|
||
|
{ }
|
||
|
{*******************************************************}
|
||
|
|
||
|
unit FMUX.Config;
|
||
|
|
||
|
interface
|
||
|
|
||
|
// Chromium requires that the process has only one thread when it's initialized.
|
||
|
// FmuxInit must be called after the Chromium initialization.
|
||
|
// Setting DoNotCallFmuxInit to True allows us to call FmuxInit after that.
|
||
|
var
|
||
|
DoNotCallFmuxInit: Boolean = True;
|
||
|
|
||
|
implementation
|
||
|
end.
|
||
|
|