Added PPOINTL, a pointer to a POINTL struct.

This commit is contained in:
Jon Griffiths 2004-06-01 19:45:59 +00:00 committed by Alexandre Julliard
parent 64e10d271d
commit 34401d84b7
3 changed files with 3 additions and 3 deletions

View File

@ -307,7 +307,7 @@ typedef struct _POINTL
{
LONG x;
LONG y;
} POINTL;
} POINTL, *PPOINTL;
/* The POINTS structure */

View File

@ -150,7 +150,7 @@ typedef struct tagPOINT {
typedef struct _POINTL {
LONG x;
LONG y;
} POINTL;
} POINTL, *PPOINTL;
typedef struct tagRECT {
LONG left;

View File

@ -149,7 +149,7 @@ typedef struct _POINTL
{
LONG x;
LONG y;
} POINTL;
} POINTL, *PPOINTL;
typedef struct tagRECT
{