FIXED structure (wingdi.h)
The FIXED structure contains the integral and fractional parts of a fixed-point real number.
C++
typedef struct _FIXED {
#if ...
WORD fract;
#if ...
short value;
#else
short value;
#endif
#else
WORD fract;
#endif
} FIXED;
fract
The fractional part of the number.
value
The integer part of the number.
The FIXED structure is used to describe the elements of the MAT2 structure.
Requirement | Value |
---|---|
Minimum supported client | Windows 2000 Professional [desktop apps only] |
Minimum supported server | Windows 2000 Server [desktop apps only] |
Header | wingdi.h (include Windows.h) |