Deprecation warning

Please note that this is outdated documentation for an older release of the Scandit Barcode Scanner SDK.

We are deprecating the 5.x API on all platforms (except Linux). Release 5.19 in April 2021 will be our final. Applications running 5.x will continue to work, and we will continue to release critical bug fixes and security patches only, for one year. We encourage you to migrate to 6.x and take advantage of our latest / advanced features and improved performance.

You'll find the updated documentation at: Data Capture SDK Documentation for Android

ScSymbologySettings.h File Reference

Go to the source code of this file.

Typedefs

typedef int32_t ScChecksums
 
typedef struct ScOpaqueSymbologySettings ScSymbologySettings
 

Enumerations

enum  ScChecksum {
  SC_CHECKSUM_NONE = 0x00, SC_CHECKSUM_MOD_10 = 0x01, SC_CHECKSUM_MOD_11 = 0x02, SC_CHECKSUM_MOD_47 = 0x04,
  SC_CHECKSUM_MOD_103 = 0x10, SC_CHECKSUM_MOD_1010 = 0x20, SC_CHECKSUM_MOD_1110 = 0x40, SC_CHECKSUM_MOD_43 = 0x100
}
 

Detailed Description

Barcode symbology configuration.

Enumeration Type Documentation

enum ScChecksum

A list of possible checksum algorithms.

Since
4.6.0
Enumerator
SC_CHECKSUM_NONE 

No checksum algorithm.

SC_CHECKSUM_MOD_10 

Checksum is calculating using modulo of 10.

SC_CHECKSUM_MOD_11 

Checksum is calculating using modulo of 11.

SC_CHECKSUM_MOD_47 

Checksum is calculating using modulo of 47.

SC_CHECKSUM_MOD_103 

Checksum is calculating using modulo of 103.

SC_CHECKSUM_MOD_1010 

Two modulo 10 checksums.

SC_CHECKSUM_MOD_1110 

Modulo 11 and a modulo 10 checksum.

SC_CHECKSUM_MOD_43 

Modulo 43 checksum.