Commit 34401d84 authored by Jon Griffiths's avatar Jon Griffiths Committed by Alexandre Julliard

Added PPOINTL, a pointer to a POINTL struct.

parent 64e10d27
...@@ -307,7 +307,7 @@ typedef struct _POINTL ...@@ -307,7 +307,7 @@ typedef struct _POINTL
{ {
LONG x; LONG x;
LONG y; LONG y;
} POINTL; } POINTL, *PPOINTL;
/* The POINTS structure */ /* The POINTS structure */
......
...@@ -150,7 +150,7 @@ typedef struct tagPOINT { ...@@ -150,7 +150,7 @@ typedef struct tagPOINT {
typedef struct _POINTL { typedef struct _POINTL {
LONG x; LONG x;
LONG y; LONG y;
} POINTL; } POINTL, *PPOINTL;
typedef struct tagRECT { typedef struct tagRECT {
LONG left; LONG left;
......
...@@ -149,7 +149,7 @@ typedef struct _POINTL ...@@ -149,7 +149,7 @@ typedef struct _POINTL
{ {
LONG x; LONG x;
LONG y; LONG y;
} POINTL; } POINTL, *PPOINTL;
typedef struct tagRECT typedef struct tagRECT
{ {
......
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