System.NativeUInt
Delphi
type NativeUInt = { built-in type };
C++
typedef unsigned int         NativeUInt;       //
Properties
| Type | Visibility | Source | Unit | Parent | 
|---|---|---|---|---|
| type typedef | public | System.pas sysmac.h | System | System | 
Description
Defines a platform-dependent unsigned integer.
NativeUInt represents a subset of the natural numbers. The range of NativeUInt depends on the current platform. On 32-bit platforms, NativeUInt is equivalent to the Cardinal type. On 64-bit platforms, NativeUInt is equivalent to the UInt64 type.
The size of NativeUInt is equivalent to the size of the pointer on the current platform.