You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1. Compile DSiWin32 with D2009
What is the expected output? What do you see instead?
C:\Dev\Delphi\Lib\OmniThreadLibrary\src\DSiWin32.pas(6396,53): error E2003:
E2003 Undeclared identifier: 'SizeOf'
What version of the product are you using? On what operating system?
DSiWin32 1.72
Please provide any additional information below.
Construction "NonClientMetrics.SizeOf" supported since D2010, need change
{$IFDEF Unicode}TNonClientMetrics.SizeOf{$ELSE}SizeOf(TNonClientMetrics){$ENDIF}
to
{$IF CompilerVersion <
21.0}SizeOf(TNonClientMetrics){$ELSE}TNonClientMetrics.SizeOf{$IFEND}
Original issue reported on code.google.com by [email protected] on 10 Sep 2013 at 1:16
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 10 Sep 2013 at 1:16The text was updated successfully, but these errors were encountered: