mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 09:13:01 +00:00
- Move out stubs and place them where they belong.
svn path=/trunk/; revision=37699
This commit is contained in:
parent
f9e772b2a2
commit
6b349fb348
3 changed files with 27 additions and 28 deletions
|
@ -3573,4 +3573,17 @@ NtGdiGetDhpdev(
|
||||||
return pGdiDevice->hPDev;
|
return pGdiDevice->hPDev;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
|
BOOL
|
||||||
|
APIENTRY
|
||||||
|
NtGdiMakeInfoDC(
|
||||||
|
IN HDC hdc,
|
||||||
|
IN BOOL bSet)
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED;
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
/* EOF */
|
/* EOF */
|
||||||
|
|
|
@ -509,5 +509,19 @@ NtGdiPolyDraw(
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
|
BOOL
|
||||||
|
APIENTRY
|
||||||
|
NtGdiMoveTo(
|
||||||
|
IN HDC hdc,
|
||||||
|
IN INT x,
|
||||||
|
IN INT y,
|
||||||
|
OUT OPTIONAL LPPOINT pptOut)
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED;
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
/* EOF */
|
/* EOF */
|
||||||
|
|
|
@ -2679,19 +2679,6 @@ NtGdiMakeFontDir(
|
||||||
*/
|
*/
|
||||||
BOOL
|
BOOL
|
||||||
APIENTRY
|
APIENTRY
|
||||||
NtGdiMakeInfoDC(
|
|
||||||
IN HDC hdc,
|
|
||||||
IN BOOL bSet)
|
|
||||||
{
|
|
||||||
UNIMPLEMENTED;
|
|
||||||
return FALSE;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* @unimplemented
|
|
||||||
*/
|
|
||||||
BOOL
|
|
||||||
APIENTRY
|
|
||||||
NtGdiMonoBitmap(
|
NtGdiMonoBitmap(
|
||||||
IN HBITMAP hbm)
|
IN HBITMAP hbm)
|
||||||
{
|
{
|
||||||
|
@ -2699,21 +2686,6 @@ NtGdiMonoBitmap(
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* @unimplemented
|
|
||||||
*/
|
|
||||||
BOOL
|
|
||||||
APIENTRY
|
|
||||||
NtGdiMoveTo(
|
|
||||||
IN HDC hdc,
|
|
||||||
IN INT x,
|
|
||||||
IN INT y,
|
|
||||||
OUT OPTIONAL LPPOINT pptOut)
|
|
||||||
{
|
|
||||||
UNIMPLEMENTED;
|
|
||||||
return FALSE;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @unimplemented
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue