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

ScBarcodeArray.h
Go to the documentation of this file.
1 
10 #ifndef SC_BARCODE_ARRAY_H_
11 #define SC_BARCODE_ARRAY_H_
12 
13 #include <Scandit/ScConfig.h>
14 #include <Scandit/ScBarcode.h>
15 #include <Scandit/ScByteArray.h>
16 
17 #if defined(__cplusplus)
18 extern "C" {
19 #endif
20 
21 
29 typedef struct ScOpaqueBarcodeArray ScBarcodeArray;
32 
41 SC_EXPORT void sc_barcode_array_retain(ScBarcodeArray *array);
42 
53 SC_EXPORT void sc_barcode_array_release(ScBarcodeArray *array);
54 
65 SC_EXPORT uint32_t
67 
80 SC_EXPORT ScBarcode *
81 sc_barcode_array_get_item_at(const ScBarcodeArray *array, uint32_t index);
82 
83 
84 
85 #if defined(__cplusplus)
86 }
87 #endif
88 
89 
90 #endif // SC_BARCODE_ARRAY_H_
91 
92 
Functions to manage an array of bytes.
A located or recognized barcode/ 2d code in an image.
ScBarcode * sc_barcode_array_get_item_at(const ScBarcodeArray *array, uint32_t index)
Get barcode at specific index in array.
void sc_barcode_array_release(ScBarcodeArray *array)
Decrease reference count of barcode array by one.
uint32_t sc_barcode_array_get_size(const ScBarcodeArray *array)
Get the number of barcodes in the array.
A fixed-size array of barcode objects.
Functions for retrieving barcode information.
Common definitions used throughout the ScanditSDK API.
void sc_barcode_array_retain(ScBarcodeArray *array)
Increase reference count of barcode array by one.