1
0
mirror of https://github.com/salvadordf/CEF4Delphi.git synced 2025-11-23 21:34:53 +02:00

Update to CEF 138.0.15
Some checks failed
Make / build (ubuntu-latest) (push) Has been cancelled

This commit is contained in:
Salvador Díaz Fau
2025-06-28 18:43:55 +02:00
parent 44d91fbc74
commit 92278a395b
26 changed files with 4494 additions and 3691 deletions

View File

@@ -4246,9 +4246,11 @@ end;
function TCefApplicationCore.Load_cef_version_info_h : boolean;
begin
{$IFDEF FPC}Pointer({$ENDIF}cef_version_info{$IFDEF FPC}){$ENDIF} := GetProcAddress(FLibHandle, 'cef_version_info');
{$IFDEF FPC}Pointer({$ENDIF}cef_version_info{$IFDEF FPC}){$ENDIF} := GetProcAddress(FLibHandle, 'cef_version_info');
{$IFDEF FPC}Pointer({$ENDIF}cef_version_info_all{$IFDEF FPC}){$ENDIF} := GetProcAddress(FLibHandle, 'cef_version_info_all');
Result := assigned(cef_version_info);
Result := assigned(cef_version_info) and
assigned(cef_version_info_all);
end;
function TCefApplicationCore.Load_cef_id_mappers_h : boolean;