annotate CSP2/CSP2_env/env-d9b9114564458d9d-741b3de822f2aaca6c6caa4325c4afce/include/pixman-1/pixman-version.h @ 69:33d812a61356

planemo upload commit 2e9511a184a1ca667c7be0c6321a36dc4e3d116d
author jpayne
date Tue, 18 Mar 2025 17:55:14 -0400
parents
children
rev   line source
jpayne@69 1 /*
jpayne@69 2 * Copyright © 2008 Red Hat, Inc.
jpayne@69 3 *
jpayne@69 4 * Permission is hereby granted, free of charge, to any person
jpayne@69 5 * obtaining a copy of this software and associated documentation
jpayne@69 6 * files (the "Software"), to deal in the Software without
jpayne@69 7 * restriction, including without limitation the rights to use, copy,
jpayne@69 8 * modify, merge, publish, distribute, sublicense, and/or sell copies
jpayne@69 9 * of the Software, and to permit persons to whom the Software is
jpayne@69 10 * furnished to do so, subject to the following conditions:
jpayne@69 11 *
jpayne@69 12 * The above copyright notice and this permission notice shall be
jpayne@69 13 * included in all copies or substantial portions of the Software.
jpayne@69 14 *
jpayne@69 15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
jpayne@69 16 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
jpayne@69 17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
jpayne@69 18 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
jpayne@69 19 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
jpayne@69 20 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
jpayne@69 21 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
jpayne@69 22 * SOFTWARE.
jpayne@69 23 *
jpayne@69 24 * Author: Carl D. Worth <cworth@cworth.org>
jpayne@69 25 */
jpayne@69 26
jpayne@69 27 #ifndef PIXMAN_VERSION_H__
jpayne@69 28 #define PIXMAN_VERSION_H__
jpayne@69 29
jpayne@69 30 #ifndef PIXMAN_H__
jpayne@69 31 # error pixman-version.h should only be included by pixman.h
jpayne@69 32 #endif
jpayne@69 33
jpayne@69 34 #define PIXMAN_VERSION_MAJOR 0
jpayne@69 35 #define PIXMAN_VERSION_MINOR 44
jpayne@69 36 #define PIXMAN_VERSION_MICRO 2
jpayne@69 37
jpayne@69 38 #define PIXMAN_VERSION_STRING "0.44.2"
jpayne@69 39
jpayne@69 40 #define PIXMAN_VERSION_ENCODE(major, minor, micro) ( \
jpayne@69 41 ((major) * 10000) \
jpayne@69 42 + ((minor) * 100) \
jpayne@69 43 + ((micro) * 1))
jpayne@69 44
jpayne@69 45 #define PIXMAN_VERSION PIXMAN_VERSION_ENCODE( \
jpayne@69 46 PIXMAN_VERSION_MAJOR, \
jpayne@69 47 PIXMAN_VERSION_MINOR, \
jpayne@69 48 PIXMAN_VERSION_MICRO)
jpayne@69 49
jpayne@69 50 #ifndef PIXMAN_API
jpayne@69 51 # define PIXMAN_API
jpayne@69 52 #endif
jpayne@69 53
jpayne@69 54 #endif /* PIXMAN_VERSION_H__ */