|
||||
File indexing completed on 2025-01-18 10:06:02
0001 /* 0002 * Copyright © 2008 Red Hat, Inc. 0003 * 0004 * Permission is hereby granted, free of charge, to any person 0005 * obtaining a copy of this software and associated documentation 0006 * files (the "Software"), to deal in the Software without 0007 * restriction, including without limitation the rights to use, copy, 0008 * modify, merge, publish, distribute, sublicense, and/or sell copies 0009 * of the Software, and to permit persons to whom the Software is 0010 * furnished to do so, subject to the following conditions: 0011 * 0012 * The above copyright notice and this permission notice shall be 0013 * included in all copies or substantial portions of the Software. 0014 * 0015 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 0016 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 0017 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 0018 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 0019 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 0020 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 0021 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 0022 * SOFTWARE. 0023 * 0024 * Author: Carl D. Worth <cworth@cworth.org> 0025 */ 0026 0027 #ifndef PIXMAN_VERSION_H__ 0028 #define PIXMAN_VERSION_H__ 0029 0030 #ifndef PIXMAN_H__ 0031 # error pixman-version.h should only be included by pixman.h 0032 #endif 0033 0034 #define PIXMAN_VERSION_MAJOR 0 0035 #define PIXMAN_VERSION_MINOR 44 0036 #define PIXMAN_VERSION_MICRO 0 0037 0038 #define PIXMAN_VERSION_STRING "0.44.0" 0039 0040 #define PIXMAN_VERSION_ENCODE(major, minor, micro) ( \ 0041 ((major) * 10000) \ 0042 + ((minor) * 100) \ 0043 + ((micro) * 1)) 0044 0045 #define PIXMAN_VERSION PIXMAN_VERSION_ENCODE( \ 0046 PIXMAN_VERSION_MAJOR, \ 0047 PIXMAN_VERSION_MINOR, \ 0048 PIXMAN_VERSION_MICRO) 0049 0050 #ifndef PIXMAN_API 0051 # define PIXMAN_API 0052 #endif 0053 0054 #endif /* PIXMAN_VERSION_H__ */
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |