Fix a typo in text.h. Implemente NtGdiGetDhpdev.

svn path=/trunk/; revision=31458
This commit is contained in:
James Tabor 2007-12-27 08:41:38 +00:00
parent b7761adada
commit 76133b4c4c
3 changed files with 27 additions and 12 deletions

View file

@ -44,7 +44,7 @@ typedef struct _STRGDI
PLONG plPartition;
PLONG plNext;
PGLYPHPOS pgpNext;
LONG lCurrentFont;
PLONG plCurrentFont;
POINTL ptlBaseLineAdjust;
INT cTTSysGlyphs;
INT cSysGlyphs;

View file

@ -3346,4 +3346,30 @@ NtGdiGetAspectRatioFilterEx(HDC hDC,
return FALSE;
}
/*
* @implemented
*/
DHPDEV
NtGdiGetDhpdev(
IN HDEV hdev)
{
PGDIDEVICE pGdiDevice = (PGDIDEVICE) hdev;
if (!pGdiDevice) return NULL;
// ATM we have one, so this cheesie test
if (pGdiDevice != &PrimarySurface) return NULL;
//
// if ( pGdiDevice < MmSystemRangeStart) return NULL;
// pPDev = &PrimarySurface;
// KeEnterCriticalRegion();
// do
// {
// if (pGdiDevice == pPDev) break;
// else
// pPDev = pPDev->ppdevNext;
// } while (pPDev != NULL);
// KeLeaveCriticalRegion();
// if (!pPDev) return NULL;
return pGdiDevice->PDev;
}
/* EOF */

View file

@ -2755,17 +2755,6 @@ NtGdiSTROBJ_dwGetCodePage(
return 0;
}
/*
* @unimplemented
*/
DHPDEV
NtGdiGetDhpdev(
IN HDEV hdev)
{
UNIMPLEMENTED;
return NULL;
}
/*
* @unimplemented
*/