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 right;
LONG bottom;
} RECTL;
} RECTL, *PRECTL;
typedef struct _AppBarData {
DWORD cbSize;
@ -661,7 +661,7 @@ typedef struct tagPOINTFX {
typedef struct _POINTL {
LONG x;
LONG y;
} POINTL;
} POINTL, *PPOINTL;
typedef struct tagPOINTS {
SHORT x;