mirror of
https://github.com/fralx/LimeReport.git
synced 2025-10-01 19:51:30 +03:00
.github
.idea
3rdparty
dark_style_sheet
easyprofiler
light_style_sheet
zint-2.10.0
backend
fonts
tests
tools
2of5.c
CMakeLists.txt
DEVELOPER
LICENSE
auspost.c
aztec.c
aztec.h
big5.h
bmp.c
bmp.h
channel_precalcs.h
codablock.c
code.c
code1.c
code1.h
code128.c
code128.h
code16k.c
code49.c
code49.h
common.c
common.h
composite.c
composite.h
dllversion.c
dmatrix.c
dmatrix.h
dotcode.c
eci.c
eci.h
eci_sb.h
emf.c
emf.h
font.h
gb18030.c
gb18030.h
gb2312.c
gb2312.h
general_field.c
general_field.h
gif.c
gridmtx.c
gridmtx.h
gs1.c
gs1.h
gs1_lint.h
hanxin.c
hanxin.h
imail.c
iso3166.h
iso4217.h
ksx1001.h
large.c
large.h
library.c
libzint.rc
mailmark.c
maxicode.c
maxicode.h
medical.c
ms_stdint.h
output.c
output.h
pcx.c
pcx.h
pdf417.c
pdf417.h
plessey.c
png.c
postal.c
ps.c
qr.c
qr.h
raster.c
reedsol.c
reedsol.h
reedsol_logs.h
rss.c
rss.h
sjis.c
sjis.h
stdint_msvc.h
svg.c
telepen.c
tif.c
tif.h
tif_lzw.h
ultra.c
upcean.c
vector.c
zfiletypes.h
zint.h
zintconfig.h
zintconfig.h.in
backend_qt
backend_tcl
cmake
debian
docs
extras
frontend
frontend_qt
getopt
tools
win32
.editorconfig
.gitignore
CMakeLists.txt
COPYING
ChangeLog
README
SetPaths.cmake
TODO
cmake_uninstall.cmake.in
readme-cmake
zint-qt.desktop
zint-qt.png
zint.nsi
zint.spec
3rdparty.pro
CMakeLists.txt
zint-2.10.0-src.tar.gz
console
demo_r1
demo_r2
designer
designer_plugin
docs
include
limereport
lrdview
tests
translations
.appveyor.yml
.gitignore
.remarkrc
.travis.yml
CMakeLists.txt
COPYING
LICENSE
README.md
common.pri
config.h.in
followTo.patch
limereport.pri
limereport.pro
qzint.pri
42 lines
1.9 KiB
C
42 lines
1.9 KiB
C
/* zintconfig.h - the configured options and settings for libzint
|
|
|
|
libzint - the open source barcode library
|
|
Copyright (C) 2021 Robin Stuart <rstuart114@gmail.com>
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
modification, are permitted provided that the following conditions
|
|
are met:
|
|
|
|
1. Redistributions of source code must retain the above copyright
|
|
notice, this list of conditions and the following disclaimer.
|
|
2. Redistributions in binary form must reproduce the above copyright
|
|
notice, this list of conditions and the following disclaimer in the
|
|
documentation and/or other materials provided with the distribution.
|
|
3. Neither the name of the project nor the names of its contributors
|
|
may be used to endorse or promote products derived from this software
|
|
without specific prior written permission.
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
SUCH DAMAGE.
|
|
*/
|
|
/* vim: set ts=4 sw=4 et : */
|
|
|
|
#ifndef ZINTCONFIG_H
|
|
#define ZINTCONFIG_H
|
|
|
|
#define ZINT_VERSION_MAJOR 2
|
|
#define ZINT_VERSION_MINOR 10
|
|
#define ZINT_VERSION_RELEASE 0
|
|
#define ZINT_VERSION_BUILD 0
|
|
|
|
#endif /* ZINTCONFIG_H */
|