Type of unsigned integers in template code.
More...
Detailed Description
Type of unsigned integers in template code.
Use this macro to declare values of 32 or 64 bit unsigned integers in template code. For the 32 bit version this macro will be defined to the the correct unsigned 32 bit integer type, likewise for the 64 bit version.
Example:
int i = 42;
UINT myvalue = 23;
myvalue = (UINT)i;
- See also:
- UINTFMT, fid_Uint32, fid_Uint64
- Note:
- The name UINT really is a macro, not a structure. It is only listed as a structure to trick the documentation system into linking all occurrences of the name to this description.