Hi

When Windows calls my DrvFillPath function of my printer driver, it passes
(sometimes) more than 6000 subpaths (MoveEx, Polyline, Polyline,
CloseFigure).... so my question now: Where does this come from? Just from
one command? Or did the creating application call the FillPath fuction
several times? ... 6000 times? Or how's this handled? So, when I'd like to
write a test application that creates me that many subpaths and just one
DrvFillPath call... what do I have to do?

thanks
MR

Re: DrvFillPath by Meier

Meier
Mon Jul 19 12:37:59 CDT 2004

ok... it was a bug in my driver...
it only gets 57 points, but because of a bug the driver reads it about 2000
times... I don't understand why it doesn't crash... but anyway...

MR