blob: fe3caa6c119332d68b150acb7e904ee5decc0966 [file] [log] [blame]
Dan Sinclair1770c022016-03-14 14:14:16 -04001// Copyright 2014 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
Dan Sinclaire7786682017-03-29 15:18:41 -04007#ifndef FXBARCODE_UTILS_H_
8#define FXBARCODE_UTILS_H_
Dan Sinclair1770c022016-03-14 14:14:16 -04009
Dan Sinclair1770c022016-03-14 14:14:16 -040010enum BCFORMAT {
11 BCFORMAT_UNSPECIFY = -1,
12 BCFORMAT_CODABAR,
13 BCFORMAT_CODE_39,
14 BCFORMAT_CODE_128,
15 BCFORMAT_CODE_128B,
16 BCFORMAT_CODE_128C,
17 BCFORMAT_EAN_8,
18 BCFORMAT_UPC_A,
19 BCFORMAT_EAN_13,
20 BCFORMAT_PDF_417,
21 BCFORMAT_DATAMATRIX,
22 BCFORMAT_QR_CODE
23};
Dan Sinclair951b1112017-10-02 10:38:55 -040024
Dan Sinclaire7786682017-03-29 15:18:41 -040025#endif // FXBARCODE_UTILS_H_