FIXED structure (wingdi.h)
The FIXED structure contains the integral and fractional parts of a fixed-point real number.
Syntax
typedef struct _FIXED {
#if ...
WORD fract;
#if ...
short value;
#else
short value;
#endif
#else
WORD fract;
#endif
} FIXED;
Members
fract
The fractional part of the number.
value
The integer part of the number.
Remarks
The FIXED structure is used to describe the elements of the MAT2 structure.
Requirements
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) |