- 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; return pGdiDevice->hPDev;
} }
/*
* @unimplemented
*/
BOOL
APIENTRY
NtGdiMakeInfoDC(
IN HDC hdc,
IN BOOL bSet)
{
UNIMPLEMENTED;
return FALSE;
}
/* EOF */ /* EOF */

View file

@ -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 */

View file

@ -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
*/ */