BarcodeResultArray Struct

Store the barcode count and result.

Syntax

typedef struct tagBarcodeResultArray {
    int iBarcodeCount;
    pBarcodeResult *ppBarcodes;
} BarcodeResultArray, *pBarcodeResultArray;

Members

iBarcodeCount ppBarcodes

Remarks

The BarcodeResultArray struct returns barcode count and result.

Example

BarcodeResultArray *paryResult = NULL;
BarcodeResult *pResult = NULL;
int iCount = paryResult->iBarcodeCount;
for(int i = 0; i < iCount; ++i)
{
    pResult = paryResult->ppBarcodes[i];
	printf("%d: %s\n", i, pResult->pBarcodeData);
}

See Also

C > Structs > BarcodeResult
C > Structs > ReaderOptions
C > Function > DecodeFile
C > Constant > BarcodeFormat
C > Constant > Error List