Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(46)

Side by Side Diff: xfa/fxbarcode/include/BC_Library.h

Issue 1816133002: Move xfa/include/fxbarcode/BC_Barcode.h to xfa/fxbarcode. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 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 XFA_FXBARCODE_INCLUDE_BC_LIBRARY_H_
8 #define XFA_FXBARCODE_INCLUDE_BC_LIBRARY_H_
9
10 enum BC_TEXT_LOC {
Tom Sepez 2016/03/21 16:49:29 Feels like these enums belong in another file sinc
dsinclair 2016/03/21 17:52:39 Yea, these need some further thought. Things like
11 BC_TEXT_LOC_NONE = 0,
12 BC_TEXT_LOC_ABOVE,
13 BC_TEXT_LOC_BELOW,
14 BC_TEXT_LOC_ABOVEEMBED,
15 BC_TEXT_LOC_BELOWEMBED
16 };
17
18 enum BC_CHAR_ENCODING { CHAR_ENCODING_UTF8 = 0, CHAR_ENCODING_UNICODE };
19
20 enum BC_TYPE {
21 BC_UNKNOWN = -1,
22 BC_CODE39 = 0,
23 BC_CODABAR,
24 BC_CODE128,
25 BC_CODE128_B,
26 BC_CODE128_C,
27 BC_EAN8,
28 BC_UPCA,
29 BC_EAN13,
30 BC_QR_CODE,
31 BC_PDF417,
32 BC_DATAMATRIX
33 };
34
35 void BC_Library_Init();
36 void BC_Library_Destory();
37
38 #endif // XFA_FXBARCODE_INCLUDE_BC_LIBRARY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698