Original:Delphi to C++ types mapping Below is a list of Delphi data types and the corresponding C++ data types: Delphi type defined in sysmac.h Platform Corresponding C++ type Boolean bool ShortInt System::Int8 signed char SmallInt short Integer int Int64 __int64 Byte System::Byte unsigned char Word System::Word unsigned short Cardinal unsigned UInt64 unsigned __int64 NativeInt System::NativeInt […]
Read MoreOriginal: C++ Classes that Support the Delphi Language Some Delphi data types and language constructs that do not have a built-in C++ counterpart are implemented in C++ as classes or structs. Class templates are also used to implement data types as well as Delphi language constructs, like set, from which a specific type can be […]
Read More