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

ScCommon.h File Reference

Go to the source code of this file.

Data Structures

struct  ScPoint
 
struct  ScQuadrilateral
 
struct  ScPointF
 
struct  ScSize
 
struct  ScSizeF
 
struct  ScRectangleF
 
struct  ScError
 

Enumerations

enum  ScCameraFocusMode { SC_CAMERA_FOCUS_MODE_UNKNOWN = 0, SC_CAMERA_FOCUS_MODE_FIXED = 1, SC_CAMERA_FOCUS_MODE_AUTO = 2, SC_CAMERA_FOCUS_MODE_MANUAL = 4 }
 
enum  ScInformationKey { SC_INFORMATION_KEY_SOFTWARE_LICENSES }
 

Functions

void sc_free (void *pointer)
 
void sc_error_free (ScError *error)
 
const char * sc_get_information_string (ScInformationKey key)
 

Detailed Description

Common functions and data structures.


Data Structure Documentation

struct ScSize

A 2-dimensional unsigned size.

Since
4.6.0
Examples:
ScanditNativeBarcodeScannerCameraDemo.c.
Data Fields
uint32_t width x dimension
uint32_t height y dimension
struct ScSizeF

A 2-dimensional size with floating point precision.

Since
4.6.0
Data Fields
float width x dimension
float height y dimension
struct ScError

Structure for holding error information.

Since
4.11.0
Data Fields
const char * message error message. Set to NULL in case there is not error
uint32_t code error code, 0 if there is no error, a positive value otherwise.

Enumeration Type Documentation

Describes the focus mode of a camera.

Since
4.6.0
Enumerator
SC_CAMERA_FOCUS_MODE_UNKNOWN 

the focus capabilities are not known

SC_CAMERA_FOCUS_MODE_FIXED 

the camera cannot change its focus

SC_CAMERA_FOCUS_MODE_AUTO 

the camera automatically adjusts the focus to create a sharp image

SC_CAMERA_FOCUS_MODE_MANUAL 

the camera is controlled by the user

Enumeration of different information strings.

Values of this enumeration are passed to sc_get_information_string to retrieve specific information.

Since
4.16.1

Function Documentation

void sc_free ( void *  pointer)

Deallocates the memory allocation pointed to by pointer.

Parameters
pointerThe pointer to be deallocated. In case pointer is a null pointer, no operation is performed.
void sc_error_free ( ScError error)

free's any memory associated with the error

Upon exit, the data fields are set to 0.

Parameters
errorthe error to free.
Since
4.11.0
const char* sc_get_information_string ( ScInformationKey  key)

Get information string.

Parameters
keyinformation identifier
Returns
The string associated with the given key, null if no string is associated with the key. The returned key is constant and must not be freed by the caller.
Since
4.16.1