Implemented PolyTextOutA/PolyTextOutW.

oldstable
Ingmar Thiemann 2003-06-06 18:10:18 +00:00 committed by Alexandre Julliard
parent 7aae1b79d9
commit 4de93e7710
1 changed files with 8 additions and 6 deletions

View File

@ -272,9 +272,10 @@ BOOL WINAPI PolyTextOutA (
INT cStrings /* [in] Number of strings in array */
)
{
FIXME("stub!\n");
SetLastError ( ERROR_CALL_NOT_IMPLEMENTED );
return 0;
for (; cStrings>0; cStrings--, pptxt++)
if (!ExtTextOutA( hdc, pptxt->x, pptxt->y, pptxt->uiFlags, &pptxt->rcl, pptxt->lpstr, pptxt->n, pptxt->pdx ))
return FALSE;
return TRUE;
}
@ -290,7 +291,8 @@ BOOL WINAPI PolyTextOutW (
INT cStrings /* [in] Number of strings in array */
)
{
FIXME("stub!\n");
SetLastError ( ERROR_CALL_NOT_IMPLEMENTED );
return 0;
for (; cStrings>0; cStrings--, pptxt++)
if (!ExtTextOutW( hdc, pptxt->x, pptxt->y, pptxt->uiFlags, &pptxt->rcl, pptxt->lpstr, pptxt->n, pptxt->pdx ))
return FALSE;
return TRUE;
}