mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 05:00:30 +00:00
user32/tests: Fix MODIFIED macro.
This commit is contained in:
parent
6c915fb336
commit
551892b071
@ -27,7 +27,7 @@
|
||||
#include "winuser.h"
|
||||
#include "winerror.h"
|
||||
|
||||
#define MODIFIED(rect) (rect.left = 10 && rect.right != 100 && rect.top == 10 && rect.bottom != 100)
|
||||
#define MODIFIED(rect) (rect.left == 10 && rect.right != 100 && rect.top == 10 && rect.bottom != 100)
|
||||
#define SAME(rect) (rect.left = 10 && rect.right == 100 && rect.top == 10 && rect.bottom == 100)
|
||||
#define EMPTY(rect) (rect.left == rect.right && rect.bottom == rect.top)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user