6a12672ca16a91e998d116963006812b1d3aecb3
[sdk] / doc / ecereCOM / uint64.econ
1 {
2    name = "uint64",
3    description = "64 bit unsigned integer data type (equivalent of C99 'uint64_t'). A 64 bit unsigned integer can range from 0 to 0xFFFFFFFFFFFFFFFF (18,446,744,073,709,551,615).",
4    usage = "Used in the declaration section of code, which is before any statements.",
5    example = "uint64 aUint64; // A stand alone declaration of a uint64.\n"
6       "uint64 a, b; // Declaring two uint64s at the same time.\n"
7       "uint64 c = 64000, d = 10; // Declaring two uint64s, and initializing them both at the same time.",
8    remarks = "Unlike other languages, the uint64 data type is actually a class.\n"
9       "\n"
10       "uint64 is equivalent to an unsigned long long in C.",
11    also = "bool, byte, char, char *, double, enum, float, int, int64, uint16, uint32, OnCompare(), OnCopy(), OnDisplay(), OnEdit(), OnFree(), OnGetDataFromString(), OnGetString(), OnSaveEdit(), OnSerialize(), OnUnserialize()"
12 }