Since XE2 the Delphi units are scoped.
Is is right to say that if I use only System and Data scoped units my code will be multiplatform and compiled for both Mac and Windows targets?
and the rest of the Vcl, Winapi, and Posix references must be governed by conditional compilation platform symbols?
Data
- in general, no. For example,Data.DBXMsSQL
(SQL Server dbExpress driver) is supported on Windows only. AlsoSystem
andData
"root" scopes may haveWin
subscope, supported on Windows only. For example,Data.Win.ADODB
(dbGo) orSystem.Win.Registry
(Windows registry). Beside thatSystem
andData
are crossplatform. Additionally toData
theDataSnap
scope is crossplatform.Vcl
,Winapi
, andPosix
you can IFDEF. Other option is to create and use platform specific application units and IFDEF them inuses
.