Commit union for float conversion.

svn path=/trunk/; revision=26769
This commit is contained in:
James Tabor 2007-05-14 00:47:29 +00:00
parent 4752c4b4c7
commit bea034c7dc

View file

@ -143,4 +143,12 @@ typedef struct _MATRIX_S
FLONG flAccel;
} MATRIX_S;
/* Gdi XForm storage union */
typedef union
{
FLOAT f;
ULONG l;
} gxf_long;
#endif