1
0
mirror of https://github.com/salvadordf/CEF4Delphi.git synced 2025-12-13 21:45:55 +02:00

Preliminary Delphi7 support, CommandLine with values, Custom libcef.dll path

This commit is contained in:
Salvador Diaz Fau
2017-02-14 11:01:16 +01:00
parent bde555ddfa
commit 8d3316ba80
23 changed files with 639 additions and 181 deletions

View File

@@ -216,8 +216,17 @@ type
TCefDomEventCategory = Integer; // /include/internal/cef_types.h (cef_dom_event_category_t)
{$IFNDEF DELPHI12_UP}
NativeUInt = Cardinal;
PNativeUInt = ^NativeUInt;
NativeInt = Integer;
uint16 = Word;
ustring = type WideString;
rbstring = type AnsiString;
{$ELSE}
ustring = type string;
rbstring = type RawByteString;
{$ENDIF}
Char16 = WideChar;
PChar16 = PWideChar;