diff --git a/include/windef.h b/include/windef.h index 7e5458139aa..8724e6239e1 100644 --- a/include/windef.h +++ b/include/windef.h @@ -315,8 +315,13 @@ typedef struct _POINTL typedef struct tagPOINTS { +#ifdef WORDS_BIGENDIAN + SHORT y; + SHORT x; +#else SHORT x; SHORT y; +#endif } POINTS, *PPOINTS, *LPPOINTS; /* The RECT structure */