gdi32: Use ntgdi names for PtVisible and RectVisible.
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
92e7cc1e03
commit
18a0b5828d
|
@ -345,9 +345,9 @@ INT WINAPI NtGdiIntersectClipRect( HDC hdc, INT left, INT top, INT right, INT bo
|
|||
|
||||
|
||||
/***********************************************************************
|
||||
* PtVisible (GDI32.@)
|
||||
* NtGdiPtVisible (win32u.@)
|
||||
*/
|
||||
BOOL WINAPI PtVisible( HDC hdc, INT x, INT y )
|
||||
BOOL WINAPI NtGdiPtVisible( HDC hdc, INT x, INT y )
|
||||
{
|
||||
POINT pt;
|
||||
RECT visrect;
|
||||
|
@ -371,9 +371,9 @@ BOOL WINAPI PtVisible( HDC hdc, INT x, INT y )
|
|||
|
||||
|
||||
/***********************************************************************
|
||||
* RectVisible (GDI32.@)
|
||||
* NtGdiRectVisible (win32u.@)
|
||||
*/
|
||||
BOOL WINAPI RectVisible( HDC hdc, const RECT* rect )
|
||||
BOOL WINAPI NtGdiRectVisible( HDC hdc, const RECT *rect )
|
||||
{
|
||||
RECT tmpRect, visrect;
|
||||
BOOL ret;
|
||||
|
|
|
@ -407,11 +407,11 @@
|
|||
@ stdcall Polyline(long ptr long)
|
||||
@ stdcall PolylineTo(long ptr long)
|
||||
@ stdcall PtInRegion(long long long) NtGdiPtInRegion
|
||||
@ stdcall PtVisible(long long long)
|
||||
@ stdcall PtVisible(long long long) NtGdiPtVisible
|
||||
# @ stub QueryFontAssocStatus
|
||||
@ stdcall RealizePalette(long)
|
||||
@ stdcall RectInRegion(long ptr) NtGdiRectInRegion
|
||||
@ stdcall RectVisible(long ptr)
|
||||
@ stdcall RectVisible(long ptr) NtGdiRectVisible
|
||||
@ stdcall Rectangle(long long long long long)
|
||||
@ stdcall RemoveFontMemResourceEx(ptr)
|
||||
@ stdcall RemoveFontResourceA(str)
|
||||
|
|
Loading…
Reference in New Issue