Commit 18a0b582 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

gdi32: Use ntgdi names for PtVisible and RectVisible.

parent 92e7cc1e
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment