X-Git-Url: http://git.jankratochvil.net/?p=reactos.git;a=blobdiff_plain;f=subsys%2Fwin32k%2Finclude%2Frect.h;h=9a70f7ae6a7ccbbb9ec4262f99e1558786870670;hp=d7c923f1f257edb457693ed476ff9b8e182250ef;hb=HEAD;hpb=7c0db166f81fbe8c8b913d7f26048e337d383605 diff --git a/subsys/win32k/include/rect.h b/subsys/win32k/include/rect.h index d7c923f..9a70f7a 100644 --- a/subsys/win32k/include/rect.h +++ b/subsys/win32k/include/rect.h @@ -1,12 +1,12 @@ BOOL STDCALL -W32kUnionRect(PRECT Dest, const RECT* Src1, const RECT* Src2); +NtGdiUnionRect(PRECT Dest, const RECT* Src1, const RECT* Src2); BOOL STDCALL -W32kSetRect(PRECT Rect, INT left, INT top, INT right, INT bottom); +NtGdiSetRect(PRECT Rect, int left, int top, int right, int bottom); BOOL STDCALL -W32kSetEmptyRect(PRECT Rect); +NtGdiSetEmptyRect(PRECT Rect); BOOL STDCALL -W32kIsEmptyRect(PRECT Rect); +NtGdiIsEmptyRect(const RECT* Rect); BOOL STDCALL -W32kIntersectRect(PRECT Dest, const RECT* Src1, const RECT* Src2); -BOOL -W32kOffsetRect(LPRECT Rect, INT x, INT y); +NtGdiIntersectRect(PRECT Dest, const RECT* Src1, const RECT* Src2); +BOOL STDCALL +NtGdiOffsetRect(LPRECT Rect, int x, int y);