You've already forked CEF4Delphi
mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2025-11-23 21:34:53 +02:00
Fixed compiler warnings in Delphi 7 with string type conversions
- Added TCefFastDomVisitor3
This commit is contained in:
@@ -213,7 +213,7 @@ function CefClearCrossOriginWhitelist: Boolean;
|
||||
procedure UInt64ToFileVersionInfo(const aVersion : uint64; var aVersionInfo : TFileVersionInfo);
|
||||
{$IFDEF MSWINDOWS}
|
||||
function GetExtendedFileVersion(const aFileName : ustring) : uint64;
|
||||
function GetStringFileInfo(const aFileName, aField : string; var aValue : string) : boolean;
|
||||
function GetStringFileInfo(const aFileName, aField : ustring; var aValue : ustring) : boolean;
|
||||
function GetDLLVersion(const aDLLFile : ustring; var aVersionInfo : TFileVersionInfo) : boolean;
|
||||
procedure OutputLastErrorMessage;
|
||||
{$ENDIF}
|
||||
@@ -1305,7 +1305,7 @@ begin
|
||||
{$ENDIF}
|
||||
end;
|
||||
|
||||
function GetStringFileInfo(const aFileName, aField : string; var aValue : string) : boolean;
|
||||
function GetStringFileInfo(const aFileName, aField : ustring; var aValue : ustring) : boolean;
|
||||
type
|
||||
PLangAndCodepage = ^TLangAndCodepage;
|
||||
TLangAndCodepage = record
|
||||
@@ -1317,7 +1317,7 @@ var
|
||||
TempBuffer : pointer;
|
||||
TempHandle : cardinal;
|
||||
TempPointer : pointer;
|
||||
TempSubBlock : string;
|
||||
TempSubBlock : ustring;
|
||||
TempLang : PLangAndCodepage;
|
||||
TempArray : array of TLangAndCodepage;
|
||||
i, j : DWORD;
|
||||
|
||||
Reference in New Issue
Block a user