C O D E 9 3 I N F O
The CODE93INFO data structure contains scanner configuration information about Code 93 bar codes. To read these values, applications call scnGetCode93Info; to set these values, they call scnSetCode93Info.
typedef struct _Code93Info
{
unsigned char uchEnable; unsigned char uchLength1; unsigned char uchLength2;
} CODE93INFO;
Field | Description |
|
|
uchEnable | Enable/disable the ability to scan Code 93 bar | ||
| codes. |
|
|
| Default: SCN_DISABLE |
| |
uchLength1 | Specifies lengths (including check digits) for | ||
uchLength2 | Code 93 bar codes. You can specify one or two | ||
| lengths, a range of lengths, or that any length is | ||
| valid. Enter values as follows: |
| |
| Option | uchLength1 | uchLength2 |
| 1 Length | Value | 0 |
| 2 Lengths | Higher Value | Lower Value |
| Range | Min. Value | Max. Value |
| Any length | 0 | 0 |
| Default: 4 (uchLength1) and 55 (uchLength2). |
Data Structure Reference