Commit 6f686490 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

Fixed POINTS definition for WORDS_BIGENDIAN case.

parent 2aa7f3c2
......@@ -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 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment