Added PPOINTL, a pointer to a POINTL struct.
This commit is contained in:
parent
64e10d271d
commit
34401d84b7
|
@ -307,7 +307,7 @@ typedef struct _POINTL
|
|||
{
|
||||
LONG x;
|
||||
LONG y;
|
||||
} POINTL;
|
||||
} POINTL, *PPOINTL;
|
||||
|
||||
/* The POINTS structure */
|
||||
|
||||
|
|
|
@ -150,7 +150,7 @@ typedef struct tagPOINT {
|
|||
typedef struct _POINTL {
|
||||
LONG x;
|
||||
LONG y;
|
||||
} POINTL;
|
||||
} POINTL, *PPOINTL;
|
||||
|
||||
typedef struct tagRECT {
|
||||
LONG left;
|
||||
|
|
|
@ -149,7 +149,7 @@ typedef struct _POINTL
|
|||
{
|
||||
LONG x;
|
||||
LONG y;
|
||||
} POINTL;
|
||||
} POINTL, *PPOINTL;
|
||||
|
||||
typedef struct tagRECT
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue