forward stubs for Escape and GetSystemPaletteUse. Working on a real
patch.
Modified: trunk/reactos/lib/gdi32/misc/stubs.c
_____
Modified: trunk/reactos/lib/gdi32/misc/stubs.c
--- trunk/reactos/lib/gdi32/misc/stubs.c 2005-01-31 23:33:34 UTC
(rev 13373)
+++ trunk/reactos/lib/gdi32/misc/stubs.c 2005-01-31 23:58:10 UTC
(rev 13374)
@@ -150,26 +150,16 @@
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 @@
*/
UINT
STDCALL
-GetSystemPaletteUse(
- HDC hDc
- )
+GetSystemPaletteUse(HDC hDc)
{
- UNIMPLEMENTED;
- SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
- return 0;
+ return NtGdiGetSystemPaletteUse(hDc);
}
Show replies by date