1
0
mirror of https://github.com/salvadordf/CEF4Delphi.git synced 2025-06-22 22:17:48 +02:00

Update to CEF 133.4.0

This commit is contained in:
Salvador Díaz Fau
2025-02-26 16:05:45 +01:00
parent 345c99ce59
commit 9c41b46285
27 changed files with 4085 additions and 3727 deletions

View File

@ -262,7 +262,6 @@ type
function GetTotalSystemMemory : uint64;
function GetAvailableSystemMemory : uint64;
function GetSystemMemoryLoad : cardinal;
function GetApiHashUniversal : ustring;
function GetApiHashPlatform : ustring;
function GetApiHashCommit : ustring;
function GetApiVersion : integer;
@ -1489,10 +1488,6 @@ type
/// </summary>
property SystemMemoryLoad : cardinal read GetSystemMemoryLoad;
/// <summary>
/// Calls cef_api_hash to get the universal hash.
/// </summary>
property ApiHashUniversal : ustring read GetApiHashUniversal;
/// <summary>
/// Calls cef_api_hash to get the platform hash.
/// </summary>
property ApiHashPlatform : ustring read GetApiHashPlatform;
@ -3930,19 +3925,6 @@ begin
{$ENDIF}
end;
function TCefApplicationCore.GetApiHashUniversal : ustring;
var
TempHash : PAnsiChar;
begin
Result := '';
if not(FLibLoaded) then exit;
TempHash := cef_api_hash(CEF_API_VERSION, CEF_API_HASH_UNIVERSAL);
if (TempHash <> nil) then
Result := ustring(AnsiString(TempHash));
end;
function TCefApplicationCore.GetApiHashPlatform : ustring;
var
TempHash : PAnsiChar;