- DWORD nfxEnqueueDoc ( CTAHD ctahd,
NFX_QUEUE_HANDLE queue_handle,
char *file_name,
NFX_DOC_PARMS *ptr_doc_parms,
DWORD *ptr_doc_number)
- ctahd CTA context handle returned by ctaCreateContext.
- queue_handle Identifies a valid queue to receive the new document.
- file_name Pointer to an existing file to send or a file to create on reception.
- ptr_doc_parms Pointer to an NFX_DOC_PARMS structure (or NULL to use default values), as follows:
typedef struct
{
DWORD size; /* size of this structure */
DWORD resolution; /* NFX_RESOLUTION_HIGH, NFX_RESOLUTION_LOW */
/* or NFX_RESOLUTION_SUPER_HIGH */
DWORD encoding; /* NFX_ENCODE_1D, NFX_ENCODE_2D or */
/* NFX_ENCODE_MMR */
DWORD pagewidth; /* NFX_PAGE_WIDTH_A4, NFX_PAGE_WIDTH_B4 or */
/* NFX_PAGE_WIDTH_A3 */
} NFX_DOC_PARMS;
- ptr_doc_number Pointer to a location to receive a valid document number on a successful return.