mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 07:26:20 +00:00
[WIN32K]
* Improve FLOATOBJ_Set{0,1}. By Timo. svn path=/trunk/; revision=63577
This commit is contained in:
parent
3629ad50aa
commit
3d43dcc6cd
1 changed files with 2 additions and 2 deletions
|
@ -63,8 +63,8 @@ extern const FLOATOBJ gef16;
|
|||
#define FLOATOBJ_16 {0x40000000, 0x00000006}
|
||||
#define FLOATOBJ_1_16 {0x40000000, 0xfffffffe}
|
||||
|
||||
#define FLOATOBJ_Set0(fo) (fo)->ul1 = 0; (fo)->ul2 = 0;
|
||||
#define FLOATOBJ_Set1(fo) (fo)->ul1 = 0x40000000; (fo)->ul2 = 2;
|
||||
#define FLOATOBJ_Set0(fo) do { (fo)->ul1 = 0; (fo)->ul2 = 0; } while (0)
|
||||
#define FLOATOBJ_Set1(fo) do { (fo)->ul1 = 0x40000000; (fo)->ul2 = 2; } while (0)
|
||||
|
||||
#else
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue