Products | Support | Send comments on this topic. | Email a link to this topic. | Back to Getting Started | Help Version 18.0.11.1
LEADTOOLS Raster Imaging C DLL Help

L_PrnClntPrintJob

Show in webframe

#include "LtprinterClient.h"

L_LTPRINTERCLIENT_API L_BOOL EXT_FUNCTION L_PrnClntPrintJob(pPrintJobData, pUserData)

PRNJOBDATA * pPrintJobData;

/* pointer to structure  */

L_VOID * pUserData;

/* pointer to additional parameters */

Callback function to be fired by the printer driver as a job is being printed.

Parameter

Description

pPrintJobData

Pointer to a PRNJOBDATA structure that contains the printer job specific data.

pUserData

A void pointer that you can use to access a variable or structure that contains data that your callback function needs. This gives you a way to receive data indirectly from the function that uses this callback function. This is the same pointer that was set in L_PrnClntStartup function in the ppUserData parameter.

Keep in mind that this is a void pointer, which must be cast to the appropriate data type within your callback function.

Returns

TRUE

The job will be continued.

FALSE

The job will be cancelled.

Comments

This function will be fired from the printer driver. The user must implement this callback function in the user demo DLL. This callback function is required in order to be called by the printer driver, which will fire this function with the pPrintJobData that contains job specific data.

The user should fill the hUserData and uUserDataSize of the pPrintJobData once this callback is fired, then the pPrintJobData data will be sent automatically by the client printer driver to the server machine.

To obtain the data attached to the print Job ID in the server machine, call the L_PrnGetRemoteData function.

This function should be exported in the DLL module definition (def) file.

Required DLLs and Libraries

LtprinterClient

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your LEADTOOLS Network Virtual Printer Driver Client Application.

Platforms

Win32, x64.

See Also

Functions:

L_PrnClntShutdown, L_PrnClntStartup, L_PrnClntSetPrinterConnectionDll

Topics:

Working with the LEADTOOLS Network Virtual Printer Driver

Example

For an example, refer to L_PrnClntStartup.

Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.