You've already forked CEF4Delphi
mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2025-12-13 21:45:55 +02:00
Update to CEF 3.3071.1647.gc8067b3
This commit is contained in:
@@ -163,6 +163,7 @@ function CefCreateTempDirectoryInDirectory(const baseDir, prefix: ustring; out n
|
||||
function CefDirectoryExists(const path: ustring): Boolean;
|
||||
function CefDeleteFile(const path: ustring; recursive: Boolean): Boolean;
|
||||
function CefZipDirectory(const srcDir, destFile: ustring; includeHiddenFiles: Boolean): Boolean;
|
||||
procedure CefLoadCRLSetsFile(const path : ustring);
|
||||
|
||||
implementation
|
||||
|
||||
@@ -978,4 +979,12 @@ begin
|
||||
Result := cef_zip_directory(@src, @dst, Ord(includeHiddenFiles)) <> 0;
|
||||
end;
|
||||
|
||||
procedure CefLoadCRLSetsFile(const path : ustring);
|
||||
var
|
||||
TempPath : TCefString;
|
||||
begin
|
||||
TempPath := CefString(path);
|
||||
cef_load_crlsets_file(@TempPath);
|
||||
end;
|
||||
|
||||
end.
|
||||
|
||||
Reference in New Issue
Block a user