]> git.sur5r.net Git - glabels/blob - libglbarcode/lgl-barcode-type.h
Imported Upstream version 3.0.0
[glabels] / libglbarcode / lgl-barcode-type.h
1 /*
2  *  lgl-barcode-type.h
3  *  Copyright (C) 2001-2010  Jim Evins <evins@snaught.com>.
4  *
5  *  This file is part of libglbarcode.
6  *
7  *  libglbarcode is free software: you can redistribute it and/or modify
8  *  it under the terms of the GNU Lesser General Public License as published by
9  *  the Free Software Foundation, either version 3 of the License, or
10  *  (at your option) any later version.
11  *
12  *  libglbarcode is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *  GNU Lesser General Public License for more details.
16  *
17  *  You should have received a copy of the GNU Lesser General Public License
18  *  along with libglbarcode.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21 #ifndef __LGL_BARCODE_TYPE_H__
22 #define __LGL_BARCODE_TYPE_H__
23
24 #include <glib.h>
25
26 G_BEGIN_DECLS
27
28
29 typedef enum {
30
31         LGL_BARCODE_TYPE_POSTNET,        /* USPS Postnet Barcode (5, 9, or 11 digits) */
32         LGL_BARCODE_TYPE_POSTNET_5,      /* USPS Postnet Barcode (5 digits) */
33         LGL_BARCODE_TYPE_POSTNET_9,      /* USPS Postnet Barcode (9 digits) */
34         LGL_BARCODE_TYPE_POSTNET_11,     /* USPS Postnet Barcode (11 digits) */
35         LGL_BARCODE_TYPE_CEPNET,         /* Brazilian Postal Code */
36
37         LGL_BARCODE_TYPE_ONECODE,        /* USPS Intelligent Mail Barcode */
38
39         LGL_BARCODE_TYPE_CODE39,         /* Code 39 */
40         LGL_BARCODE_TYPE_CODE39_EXT,     /* Extended Code 39 (Supports full ASCII character set) */
41
42         /*< private >*/
43         LGL_BARCODE_N_TYPES
44
45 } lglBarcodeType;
46
47
48 G_END_DECLS
49
50 #endif /* __LGL_BARCODE_TYPE_H__ */
51
52
53
54 /*
55  * Local Variables:       -- emacs
56  * mode: C                -- emacs
57  * c-basic-offset: 8      -- emacs
58  * tab-width: 8           -- emacs
59  * indent-tabs-mode: nil  -- emacs
60  * End:                   -- emacs
61  */