doc: add econ-based text doc exported from previous ear-based eCdoc format.
[sdk] / doc / ecereCOM / uint64.econ
1 {
2    name = "uint64",
3    description = "An unsigned integer data type.\n"
4       "\n"
5       "Memory occupied: 64 bits(or 8 bytes)\n"
6       "\n"
7       "A uint64 data type holds a decimal value between the range of 0 and 2 exp 64-1 (or 0 to 18,446,744,073,709,551,615).",
8    usage = "Used in the declaration section of code, which is before any statements.",
9    example = "uint64 aUint64; // A stand alone declaration of a uint64.\n"
10       "uint64 a, b; // Declaring two uint64s at the same time.\n"
11       "uint64 c = 64000, d = 10; // Declaring two uint64s, and initializing them both at the same time.",
12    remarks = "Unlike other languages, the uint64 data type is actually a class.\n"
13       "\n"
14       "uint64 is equivalent to an unsigned long long in C.",
15    also = "bool, byte, char, char *, double, enum, float, int, int64, uint16, uint32, OnCompare(), OnCopy(), OnDisplay(), OnEdit(), OnFree(), OnGetDataFromString(), OnGetString(), OnSaveEdit(), OnSerialize(), OnUnserialize()"
16 }