forward stubs for Escape and GetSystemPaletteUse. Working on a real patch.

svn path=/trunk/; revision=13374
This commit is contained in:
Steven Edwards 2005-01-31 23:58:10 +00:00
parent 9535cafaaf
commit ff4e3250a0

View file

@ -150,26 +150,16 @@ EnumObjects(
return 0; return 0;
} }
/* /*
* @unimplemented * @unimplemented
*/ */
int int
STDCALL STDCALL
Escape( Escape(HDC hdc, INT escape, INT in_count, LPCSTR in_data, LPVOID out_data)
HDC a0,
int a1,
int a2,
LPCSTR a3,
LPVOID a4
)
{ {
UNIMPLEMENTED; return NtGdiEscape(hdc,escape,in_count,in_data,out_data);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return 0;
} }
/* /*
* @unimplemented * @unimplemented
*/ */
@ -273,13 +263,9 @@ GetRasterizerCaps(
*/ */
UINT UINT
STDCALL STDCALL
GetSystemPaletteUse( GetSystemPaletteUse(HDC hDc)
HDC hDc
)
{ {
UNIMPLEMENTED; return NtGdiGetSystemPaletteUse(hDc);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return 0;
} }