mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 01:24:38 +00:00
forward stubs for Escape and GetSystemPaletteUse. Working on a real patch.
svn path=/trunk/; revision=13374
This commit is contained in:
parent
9535cafaaf
commit
ff4e3250a0
1 changed files with 4 additions and 18 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue