Scanbot SDK
Loading...
Searching...
No Matches
ScanbotSDKBarcodeDocumentParser.h
Go to the documentation of this file.
1// Auto-generated with ScanbotSDKCodegenV3. Modifications will be overwritten.
2// Generated from SchemasV3/CoreSchemas/schemas/BarcodeDocumentParser.yaml
6
7#pragma once
8#ifndef SCANBOTSDK_BARCODEDOCUMENTPARSER_H
9#define SCANBOTSDK_BARCODEDOCUMENTPARSER_H
10
11
13#include <stdbool.h>
14#include <stddef.h>
15#include <stdint.h>
16#include <string.h>
17#include <ScanbotSDKErrorCode.h>
18#include <ScanbotSDKDefs.h>
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
24
33
46 size_t accepted_formats_size,
48);
49
58);
59
73 const char* raw_string,
75);
76
77
78#ifdef __cplusplus
79} /* extern "C" */
80#endif
81
82#endif /* SCANBOTSDK_BARCODEDOCUMENTPARSER_H */
ScanbotSDK Error Code C API.
scanbotsdk_error_code_t
The error codes returned by most of the Scanbot SDK functions.
Definition ScanbotSDKErrorCode.h:25
SBSDK_API scanbotsdk_error_code_t scanbotsdk_barcode_document_parser_parse(scanbotsdk_barcode_document_parser_t *self, const char *raw_string, scanbotsdk_barcode_document_parser_result_t **result)
Parse the given string as a barcode document.
struct scanbotsdk_barcode_document_parser_t scanbotsdk_barcode_document_parser_t
scanbotsdk_barcode_document_parser_t class
Definition ScanbotSDKBarcodeDocumentParser.h:32
scanbotsdk_barcode_document_format_t
scanbotsdk_barcode_document_format_t enum
Definition ScanbotSDKBarcodeDocumentTypes.h:31
SBSDK_API scanbotsdk_error_code_t scanbotsdk_barcode_document_parser_create(scanbotsdk_barcode_document_format_t *accepted_formats, size_t accepted_formats_size, scanbotsdk_barcode_document_parser_t **result)
Creates a new instance of scanbotsdk_barcode_document_parser with given params and stores it in the l...
SBSDK_API scanbotsdk_error_code_t scanbotsdk_barcode_document_parser_free(scanbotsdk_barcode_document_parser_t *self)
Frees the memory allocated for the instance of scanbotsdk_barcode_document_parser_t....
struct scanbotsdk_barcode_document_parser_result_t scanbotsdk_barcode_document_parser_result_t
scanbotsdk_barcode_document_parser_result_t class
Definition ScanbotSDKBarcodeDocumentTypes.h:84