Fixed POINTS definition for WORDS_BIGENDIAN case.
This commit is contained in:
parent
2aa7f3c276
commit
6f686490b1
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue