Commit 4de93e77 authored by Ingmar Thiemann's avatar Ingmar Thiemann Committed by Alexandre Julliard

Implemented PolyTextOutA/PolyTextOutW.

parent 7aae1b79
...@@ -272,9 +272,10 @@ BOOL WINAPI PolyTextOutA ( ...@@ -272,9 +272,10 @@ BOOL WINAPI PolyTextOutA (
INT cStrings /* [in] Number of strings in array */ INT cStrings /* [in] Number of strings in array */
) )
{ {
FIXME("stub!\n"); for (; cStrings>0; cStrings--, pptxt++)
SetLastError ( ERROR_CALL_NOT_IMPLEMENTED ); if (!ExtTextOutA( hdc, pptxt->x, pptxt->y, pptxt->uiFlags, &pptxt->rcl, pptxt->lpstr, pptxt->n, pptxt->pdx ))
return 0; return FALSE;
return TRUE;
} }
...@@ -290,7 +291,8 @@ BOOL WINAPI PolyTextOutW ( ...@@ -290,7 +291,8 @@ BOOL WINAPI PolyTextOutW (
INT cStrings /* [in] Number of strings in array */ INT cStrings /* [in] Number of strings in array */
) )
{ {
FIXME("stub!\n"); for (; cStrings>0; cStrings--, pptxt++)
SetLastError ( ERROR_CALL_NOT_IMPLEMENTED ); if (!ExtTextOutW( hdc, pptxt->x, pptxt->y, pptxt->uiFlags, &pptxt->rcl, pptxt->lpstr, pptxt->n, pptxt->pdx ))
return 0; return FALSE;
return TRUE;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment