diff --git a/reactos/subsystems/win32/win32k/objects/dc.c b/reactos/subsystems/win32/win32k/objects/dc.c index 1a75258b829..99681f7077d 100644 --- a/reactos/subsystems/win32/win32k/objects/dc.c +++ b/reactos/subsystems/win32/win32k/objects/dc.c @@ -3573,4 +3573,17 @@ NtGdiGetDhpdev( return pGdiDevice->hPDev; } + /* + * @unimplemented + */ +BOOL +APIENTRY +NtGdiMakeInfoDC( + IN HDC hdc, + IN BOOL bSet) +{ + UNIMPLEMENTED; + return FALSE; +} + /* EOF */ diff --git a/reactos/subsystems/win32/win32k/objects/line.c b/reactos/subsystems/win32/win32k/objects/line.c index c4368a812ca..c70b692ba06 100644 --- a/reactos/subsystems/win32/win32k/objects/line.c +++ b/reactos/subsystems/win32/win32k/objects/line.c @@ -509,5 +509,19 @@ NtGdiPolyDraw( return result; } + /* + * @unimplemented + */ +BOOL +APIENTRY +NtGdiMoveTo( + IN HDC hdc, + IN INT x, + IN INT y, + OUT OPTIONAL LPPOINT pptOut) +{ + UNIMPLEMENTED; + return FALSE; +} /* EOF */ diff --git a/reactos/subsystems/win32/win32k/stubs/stubs.c b/reactos/subsystems/win32/win32k/stubs/stubs.c index eac95d7563e..dea2828abcc 100644 --- a/reactos/subsystems/win32/win32k/stubs/stubs.c +++ b/reactos/subsystems/win32/win32k/stubs/stubs.c @@ -2679,19 +2679,6 @@ NtGdiMakeFontDir( */ BOOL APIENTRY -NtGdiMakeInfoDC( - IN HDC hdc, - IN BOOL bSet) -{ - UNIMPLEMENTED; - return FALSE; -} - - /* - * @unimplemented - */ -BOOL -APIENTRY NtGdiMonoBitmap( IN HBITMAP hbm) { @@ -2699,21 +2686,6 @@ NtGdiMonoBitmap( return FALSE; } - /* - * @unimplemented - */ -BOOL -APIENTRY -NtGdiMoveTo( - IN HDC hdc, - IN INT x, - IN INT y, - OUT OPTIONAL LPPOINT pptOut) -{ - UNIMPLEMENTED; - return FALSE; -} - /* * @unimplemented */