778d948281e007f56404dc591a0d7d4933f9573b
[sdk] / doc / ecereCOM / uint.econ
1 {
2    name = "uint",
3    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).",
4    usage = "Used in the declaration section of code, which is before any statements.",
5    example = "uint aUint; // A stand alone declaration of a uint.\n"
6       "uint a, b; // Declaring two uints at the same time.\n"
7       "uint c = 64000, d = 10; // Declaring two uints, and initializing them both at the same time.",
8    remarks = "Unlike other languages the uint data type is actually a class.\n"
9       "\n"
10       "uint is equivalent to an unsigned int in C.",
11    also = "bool, byte, char, char *, double, enum, float, int, int64, uint16, uint32, uint64, OnCompare(), OnCopy(), OnDisplay(), OnEdit(), OnFree(), OnGetDataFromString(), OnGetString(), OnSaveEdit(), OnSerialize(), OnUnserialize()"
12 }