ecere/gfx/imgDistMap: authorship notice update
[sdk] / doc / ecereCOM / uint32.econ
1 {
2    name = "uint32",
3    description = "32 bit unsigned integer data type (equivalent of C99 'uint32_t'). A 32 bit unsigned integer 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 = "uint32 aUint32; // A stand alone declaration of a uint32.<br>"
6       "uint32 a, b; // Declaring two uint32s at the same time.<br>"
7       "uint32 c = 64000, d = 10; // Declaring two uint32s, and initializing them both at the same time.",
8    remarks = "Unlike other languages the uint32 data type is actually a class.<br>"
9       "<br>"
10       "uint32 is equivalent to an unsigned int in C.",
11    also = "bool, byte, char, char *, double, enum, float, int, int64, uint16, uint64, OnCompare(), OnCopy(), OnDisplay(), OnEdit(), OnFree(), OnGetDataFromString(), OnGetString(), OnSaveEdit(), OnSerialize(), OnUnserialize()"
12 }