From ff4e3250a0c6d3766d43863d5ccd76a40e18a38c Mon Sep 17 00:00:00 2001 From: Steven Edwards Date: Mon, 31 Jan 2005 23:58:10 +0000 Subject: [PATCH] forward stubs for Escape and GetSystemPaletteUse. Working on a real patch. svn path=/trunk/; revision=13374 --- reactos/lib/gdi32/misc/stubs.c | 22 ++++------------------ 1 file changed, 4 insertions(+), 18 deletions(-) diff --git a/reactos/lib/gdi32/misc/stubs.c b/reactos/lib/gdi32/misc/stubs.c index aa0114d7d40..9689b8592d2 100644 --- a/reactos/lib/gdi32/misc/stubs.c +++ b/reactos/lib/gdi32/misc/stubs.c @@ -150,26 +150,16 @@ EnumObjects( return 0; } - /* * @unimplemented */ int STDCALL -Escape( - HDC a0, - int a1, - int a2, - LPCSTR a3, - LPVOID a4 - ) +Escape(HDC hdc, INT escape, INT in_count, LPCSTR in_data, LPVOID out_data) { - UNIMPLEMENTED; - SetLastError(ERROR_CALL_NOT_IMPLEMENTED); - return 0; + return NtGdiEscape(hdc,escape,in_count,in_data,out_data); } - /* * @unimplemented */ @@ -273,13 +263,9 @@ GetRasterizerCaps( */ UINT STDCALL -GetSystemPaletteUse( - HDC hDc - ) +GetSystemPaletteUse(HDC hDc) { - UNIMPLEMENTED; - SetLastError(ERROR_CALL_NOT_IMPLEMENTED); - return 0; + return NtGdiGetSystemPaletteUse(hDc); }