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

Fix for crashes on old Delphi versions

This commit is contained in:
Salvador Diaz Fau
2017-02-05 20:56:46 +01:00
parent d3d6c4ca0b
commit c23afaba1b
122 changed files with 875 additions and 118 deletions

View File

@@ -42,10 +42,16 @@ unit uCEFTypes;
{$MINENUMSIZE 4}
{$ENDIF}
{$I cef.inc}
interface
uses
{$IFDEF DELPHI16_UP}
WinApi.Windows, System.Math;
{$ELSE}
Windows, Math;
{$ENDIF}
type
PCefStringWide = ^TCefStringWide;