- Move out stubs and place them where they belong.

svn path=/trunk/; revision=37699
This commit is contained in:
James Tabor 2008-11-28 03:57:57 +00:00
parent f9e772b2a2
commit 6b349fb348
3 changed files with 27 additions and 28 deletions

View file

@ -3573,4 +3573,17 @@ NtGdiGetDhpdev(
return pGdiDevice->hPDev;
}
/*
* @unimplemented
*/
BOOL
APIENTRY
NtGdiMakeInfoDC(
IN HDC hdc,
IN BOOL bSet)
{
UNIMPLEMENTED;
return FALSE;
}
/* EOF */

View file

@ -509,5 +509,19 @@ NtGdiPolyDraw(
return result;
}
/*
* @unimplemented
*/
BOOL
APIENTRY
NtGdiMoveTo(
IN HDC hdc,
IN INT x,
IN INT y,
OUT OPTIONAL LPPOINT pptOut)
{
UNIMPLEMENTED;
return FALSE;
}
/* EOF */

View file

@ -2679,19 +2679,6 @@ NtGdiMakeFontDir(
*/
BOOL
APIENTRY
NtGdiMakeInfoDC(
IN HDC hdc,
IN BOOL bSet)
{
UNIMPLEMENTED;
return FALSE;
}
/*
* @unimplemented
*/
BOOL
APIENTRY
NtGdiMonoBitmap(
IN HBITMAP hbm)
{
@ -2699,21 +2686,6 @@ NtGdiMonoBitmap(
return FALSE;
}
/*
* @unimplemented
*/
BOOL
APIENTRY
NtGdiMoveTo(
IN HDC hdc,
IN INT x,
IN INT y,
OUT OPTIONAL LPPOINT pptOut)
{
UNIMPLEMENTED;
return FALSE;
}
/*
* @unimplemented
*/