mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 09:50:02 +00:00
[GDI32]
Avoid casting RECT and POINT to RECTL and POINTL by adding a define svn path=/trunk/; revision=65718
This commit is contained in:
parent
ab81b74bb4
commit
0d02208b99
1 changed files with 10 additions and 0 deletions
|
@ -21,6 +21,16 @@
|
|||
|
||||
/* SDK/DDK/NDK Headers. */
|
||||
#include <windef.h>
|
||||
|
||||
/* Avoid type casting, by defining RECT to RECTL */
|
||||
#define RECT RECTL
|
||||
#define PRECT PRECTL
|
||||
#define LPRECT LPRECTL
|
||||
#define LPCRECT LPCRECTL
|
||||
#define POINT POINTL
|
||||
#define LPPOINT PPOINTL
|
||||
#define PPOINT PPOINTL
|
||||
|
||||
#include <winbase.h>
|
||||
#include <winnls.h>
|
||||
#include <objbase.h>
|
||||
|
|
Loading…
Reference in a new issue