scrollbar:
[reactos.git] / reactos / subsys / win32k / include / rect.h
1 #ifndef _WIN32K_RECT_H
2 #define _WIN32K_RECT_H
3
4 BOOL STDCALL
5 NtGdiUnionRect(PRECT Dest, const RECT* Src1, const RECT* Src2);
6 BOOL STDCALL
7 NtGdiSetRect(PRECT Rect, int left, int top, int right, int bottom);
8 BOOL STDCALL
9 NtGdiSetEmptyRect(PRECT Rect);
10 BOOL STDCALL
11 NtGdiIsEmptyRect(const RECT* Rect);
12 BOOL STDCALL
13 NtGdiIntersectRect(PRECT Dest, const RECT* Src1, const RECT* Src2);
14 BOOL STDCALL
15 NtGdiOffsetRect(LPRECT Rect, int x, int y);
16
17 #endif /* _WIN32K_RECT_H */