uint

Module: ecereCOM
Type: Basic Data Type

Description

Unsigned integer data type (expected to be equivalent to C99 'uint32_t'). A 32 bit unsigned itger can range from 0 to 0xFFFFFFFF (4,294,967,295).

Usage


Used in the declaration section of code, which is before any statements.

Example

uint aUint; // A stand alone declaration of a uint.
uint a, b; // Declaring two uints at the same time.
uint c = 64000, d = 10; // Declaring two uints, and initializing them both at the same time.

Remarks


Unlike other languages the uint data type is actually a class.

uint is equivalent to an unsigned int in C.

See Also


bool, byte, char, char *, double, enum, float, int, int64, uint16, uint32, uint64, OnCompare(), OnCopy(), OnDisplay(), OnEdit(), OnFree(), OnGetDataFromString(), OnGetString(), OnSaveEdit(), OnSerialize(), OnUnserialize()