#ifndef _GDI_COMMON_H_ #define _GDI_COMMON_H_ #include typedef uint COLORREF; typedef unsigned short COLOR16; typedef int FXPT16DOT16; typedef int FXPT2DOT30; typedef struct tagPOINT { int x; int y; } POINT, *PPOINT, *NPPOINT, *LPPOINT; typedef struct _POINTL { int x; int y; } POINTL, *PPOINTL, *NPPOINTL, *LPPOINTL; typedef struct tagPOINTS { int x; int y; } POINTS, *PPOINTS, *NPPOINTS, *LPPOINTS; typedef struct tagSIZE { int cx; int cy; } SIZE, *PSIZE, *LPSIZE; typedef struct _SIZEL { int cx; int cy; } SIZEL, *PSIZEL, *LPSIZEL; typedef struct tagRECT { int left; int top; int right; int bottom; } RECT, *PRECT, *NPRECT, *LPRECT; #endif /* _GDI_COMMON_H_ */