- DWORD nfxEnqueueDoc (CTAHD ctahd,
NFX_QUEUE_HANDLE queue_handle,
char *file_name,
NFX_DOC_PARMS *ptr_doc_parms,
DWORD *ptr_doc_number)
- ctahd Handle returned by ctaCreateContext
- queue_handle Identifies a valid queue to receive the new document
- file_name Name of an existing file to send or a file to create on reception
- ptr_doc_parms Pointer to an NFX_DOC_PARMS structure as shown below (NULL uses default values):
typedef struct
{
DWORD size; /* size of this structure */
DWORD reserved1; /* must be 0 */
DWORD resolution; /* NFX_RESOLUTION_HIGH */
/* NFX_RESOLUTION_LOW */
/* NFX_RESOLUTION_SUPER_HIGH */
DWORD encoding; /* NFX_ENCODE_1D or NFX_ENCODE_2D */
DWORD pagewidth; /* NFX_PAGE_WIDTH_A4 */
/* NFX_PAGE_WIDTH_B4 */
/* NFX_PAGE_WIDTH_A3 */
DWORD reserved2;
char reserved3[21];
BYTE reserved4[54];
} NFX_DOC_PARMS;
- ptr_doc_number Pointer to a location to receive a valid document number on a successful return