ErrorCorrection 

Overview

Some barcodes cannot be read because the process of scanning or faxing has split or merged bars together. When ErrorCorrection  is set to True to toolkit will, where possible, make a best guess at such barcodes.

Note that this property currently only applies to Code 39 and Code 39 Extended barcodes.

Default Value: False

void STSetParameter(hBarcode, ST_ERROR_CORRECTION, uint16 *value) ;

void STGetParameter(hBarcode, ST_ERROR_CORRECTION, uint16 *value) ;

e.g

// Turn on error correction
#include "barcode.h"
uint16 value = 1 ;
STSetParameter(hBarcode, ST_ERROR_CORRECTION, &value) ;