mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +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;
|
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;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue