Fixed LoadLibrary parameter for Linux

This commit is contained in:
Salvador Díaz Fau 2020-06-13 17:57:59 +02:00
parent 0be9d32bc3
commit ea447c74d5
2 changed files with 2 additions and 2 deletions

View File

@ -2030,7 +2030,7 @@ begin
{$IFDEF MSWINDOWS}
FLibHandle := LoadLibraryExW(PWideChar(LibCefPath), 0, LOAD_WITH_ALTERED_SEARCH_PATH);
{$ELSE}
FLibHandle := LoadLibrary(PChar(LibCefPath));
FLibHandle := LoadLibrary(LibCefPath);
{$ENDIF}
if (FLibHandle = 0) then

View File

@ -2,7 +2,7 @@
"UpdateLazPackages" : [
{
"ForceNotify" : true,
"InternalVersion" : 143,
"InternalVersion" : 144,
"Name" : "cef4delphi_lazarus.lpk",
"Version" : "83.3.12.0"
}