mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
added pointer types for RECTL and POINTL
svn path=/trunk/; revision=584
This commit is contained in:
parent
01034d9c59
commit
ce373b0c40
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue