ecere/gfx/drivers/Win32BitmapPrinter: Fixed warnings
[sdk] / doc / ecereCOM / uint32.econ
1 {
2    name = "uint32",
3    description = "An unsigned integer data type.\n"
4       "\n"
5       "Memory occupied: 32 bits(or 4 bytes)\n"
6       "\n"
7       "A uint32 data type holds a decimal value between the range of 0 to 2 exp 32-1 (or 0 to  4,294,967,295).",
8    usage = "Used in the declaration section of code, which is before any statements.",
9    example = "uint32 aUint32; // A stand alone declaration of a uint32.\n"
10       "uint32 a, b; // Declaring two uint32s at the same time.\n"
11       "uint32 c = 64000, d = 10; // Declaring two uint32s, and initializing them both at the same time.",
12    remarks = "Unlike other languages the uint32 data type is actually a class.\n"
13       "\n"
14       "uint32 is equivalent to an unsigned int in C.",
15    also = "bool, byte, char, char *, double, enum, float, int, int64, uint16, uint64, OnCompare(), OnCopy(), OnDisplay(), OnEdit(), OnFree(), OnGetDataFromString(), OnGetString(), OnSaveEdit(), OnSerialize(), OnUnserialize()"
16 }