blob: 7ed4ca468948e927c1b13c7b7820de8dd68a7b73 [file] [log] [blame]
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -07001// Copyright 2017 PDFium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6
7#ifndef FXBARCODE_QRCODE_BC_QRCODERECBLOCKSDATA_H_
8#define FXBARCODE_QRCODE_BC_QRCODERECBLOCKSDATA_H_
9
10#include <stdint.h>
11
12struct CBC_QRCoderECBlockData {
13 uint8_t ecCodeWordsPerBlock;
14 uint8_t count1;
15 uint8_t dataCodeWords1;
16 uint8_t count2;
17 uint8_t dataCodeWords2;
18};
19
20extern const CBC_QRCoderECBlockData g_ECBData[40][4];
21
22#endif // FXBARCODE_QRCODE_BC_QRCODERECBLOCKSDATA_H_