added pointer types for RECTL and POINTL

svn path=/trunk/; revision=584
This commit is contained in:
Rex Jolliff 1999-07-07 01:41:00 +00:00
parent 01034d9c59
commit ce373b0c40

View file

@ -482,7 +482,7 @@ typedef struct _RECTL {
LONG top; LONG top;
LONG right; LONG right;
LONG bottom; LONG bottom;
} RECTL; } RECTL, *PRECTL;
typedef struct _AppBarData { typedef struct _AppBarData {
DWORD cbSize; DWORD cbSize;
@ -661,7 +661,7 @@ typedef struct tagPOINTFX {
typedef struct _POINTL { typedef struct _POINTL {
LONG x; LONG x;
LONG y; LONG y;
} POINTL; } POINTL, *PPOINTL;
typedef struct tagPOINTS { typedef struct tagPOINTS {
SHORT x; SHORT x;