{ name = "uint", 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.", also = "bool, byte, char, char *, double, enum, float, int, int64, uint16, uint32, uint64, OnCompare(), OnCopy(), OnDisplay(), OnEdit(), OnFree(), OnGetDataFromString(), OnGetString(), OnSaveEdit(), OnSerialize(), OnUnserialize()" }