1 // 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 7 #ifndef FXBARCODE_UTILS_H_ 8 #define FXBARCODE_UTILS_H_ 9 10 enum 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 }; 24 25 #endif // FXBARCODE_UTILS_H_ 26