xref: /reactos/win32ss/gdi/eng/i386/floatobj.c (revision ea6e7740)
1 /*
2  * PROJECT:         ReactOS win32 kernel mode subsystem
3  * LICENSE:         GPL - See COPYING in the top level directory
4  * FILE:            win32ss/gdi/eng/i386/floatobj.c
5  * PURPOSE:         FLOATOBJ API
6  * PROGRAMMERS:     Jérôme Gardou
7  */
8 
9 /** Includes ******************************************************************/
10 
11 #include <win32k.h>
12 #define NDEBUG
13 #include <debug.h>
14 
15 LONG
16 APIENTRY
17 FLOATOBJ_GetLong(FLOATOBJ* pf)
18 {
19     LONG val = 0;
20     (void)FLOATOBJ_bConvertToLong(pf, &val);
21     return val;
22 }
23