BOOL DrvSplEndPage(
HANDLE hDriver | |
); |
DrvSplEndPage provides end-of-page notification.
Parameters
hDriver
Identifies the per-job instance handle with which the printer and print job are associated. The driver generated this handle in response to a call to DrvSplStartDoc.
Return Value
DrvSplEndPage returns TRUE when it succeeds; otherwise it returns FALSE.
Comments
The spooler calls DrvSplEndPage to provide the driver with end-of-page notification. Drivers should perform any work required to finish rendering the current page.
The user-mode printer driver should take any steps necessary to protect itself in the event that multiple jobs are printed simultaneously.
DrvSplEndPage can be optionally implemented.
See Also