You've already forked CEF4Delphi
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:
@ -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;
|
||||
|
Reference in New Issue
Block a user