From bea034c7dcfb53c97419d9791488bf1235438a68 Mon Sep 17 00:00:00 2001 From: James Tabor Date: Mon, 14 May 2007 00:47:29 +0000 Subject: [PATCH] Commit union for float conversion. svn path=/trunk/; revision=26769 --- reactos/include/reactos/win32k/ntgdityp.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/reactos/include/reactos/win32k/ntgdityp.h b/reactos/include/reactos/win32k/ntgdityp.h index 550247aaa16..20872ad644e 100644 --- a/reactos/include/reactos/win32k/ntgdityp.h +++ b/reactos/include/reactos/win32k/ntgdityp.h @@ -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