Fixed POINTS definition for WORDS_BIGENDIAN case.

This commit is contained in:
Dmitry Timoshkov 2005-06-17 09:50:48 +00:00 committed by Alexandre Julliard
parent 2aa7f3c276
commit 6f686490b1
1 changed files with 5 additions and 0 deletions

View File

@ -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 */