mirror of
https://git.code.sf.net/p/zint/code
synced 2025-12-22 20:37:08 +00:00
backend: define z_alloca() and use for both Unix and Windows;
replace double-slash comments with old-skool slash asterisk ones; define uint16_t etc for Windows ourselves and remove ms_stdint.h & stdint_msvc.h as no longer used; (backend (excepting test suite) now C89 compatible) LICENSE: move from backend to root and move COPYING to frontend, with copies in frontend_qt & backend_qt, so in where it applies; add LICENSE section from manual to root README
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
/* filetypes.h - file type flags
|
||||
|
||||
/* filetypes.h - file type flags */
|
||||
/*
|
||||
libzint - the open source barcode library
|
||||
Copyright (C) 2021 Robin Stuart <rstuart114@gmail.com>
|
||||
Copyright (C) 2021-2022 Robin Stuart <rstuart114@gmail.com>
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions
|
||||
@@ -28,12 +28,12 @@
|
||||
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGE.
|
||||
*/
|
||||
/* vim: set ts=4 sw=4 et : */
|
||||
/* SPDX-License-Identifier: BSD-3-Clause */
|
||||
|
||||
#ifndef ZFILETYPES_H
|
||||
#define ZFILETYPES_H
|
||||
#ifndef Z_ZFILETYPES_H
|
||||
#define Z_ZFILETYPES_H
|
||||
|
||||
// File types
|
||||
/* File types */
|
||||
#define OUT_BUFFER 0
|
||||
#define OUT_SVG_FILE 10
|
||||
#define OUT_EPS_FILE 20
|
||||
@@ -45,4 +45,5 @@
|
||||
#define OUT_JPG_FILE 180
|
||||
#define OUT_TIF_FILE 200
|
||||
|
||||
#endif /* ZFILETYPES_H */
|
||||
/* vim: set ts=4 sw=4 et : */
|
||||
#endif /* Z_ZFILETYPES_H */
|
||||
|
||||
Reference in New Issue
Block a user