"Dimitrie O. Paun" dpaun@rogers.com wrote:
On April 5, 2002 07:37 pm, Alexandre Julliard wrote:
Log message: Huw D M Davies hdavies@codeweavers.com Spout a FIXME if we try to call ExtTextOut on an open path.
FIXME what? Is there some unimplemented functionality, or is it just illegal to call ExtTextOut on an open path?
It's completely legal to do:
BeginPath(hDC); ExtTextOut(hDC, ...); EndPath(hDC); StrokePath(hDC);
to get an outlined text output.