implement GetTextExtentExPointI

svn path=/trunk/; revision=28729
This commit is contained in:
Magnus Olsen
2007-08-31 23:56:11 +00:00
parent 25340773cc
commit 112625358d
+9 -13
View File
@@ -1745,23 +1745,19 @@ UnloadNetworkFonts(DWORD unknown)
}
/*
* @unimplemented
* @implemented
*/
BOOL
STDCALL
GetTextExtentExPointI(
HDC hdc,
LPWORD pgiIn,
int cgi,
int nMaxExtent,
LPINT lpnFit,
LPINT alpDx,
LPSIZE lpSize
)
GetTextExtentExPointI(HDC hdc,
LPWORD pgiIn,
int cgi,
int nMaxExtent,
LPINT lpnFit,
LPINT alpDx,
LPSIZE lpSize)
{
UNIMPLEMENTED;
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return 0;
return NtGdiGetTextExtentExW(hdc,pgiIn,cgi,nMaxExtent,(ULONG *)lpnFit, (PULONG) alpDx,lpSize,1);
}
/*