| 1 | /* |
| 2 | * AT-SPI - Assistive Technology Service Provider Interface |
| 3 | * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap) |
| 4 | * |
| 5 | * Copyright 2023 SUSE LLC. |
| 6 | * |
| 7 | * |
| 8 | * This library is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU Lesser General Public |
| 10 | * License as published by the Free Software Foundation; either |
| 11 | * version 2.1 of the License, or (at your option) any later version. |
| 12 | * |
| 13 | * This library is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 16 | * Lesser General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU Lesser General Public |
| 19 | * License along with this library; if not, write to the |
| 20 | * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 21 | * Boston, MA 02110-1301, USA. |
| 22 | */ |
| 23 | |
| 24 | #ifndef _ATSPI_VERSION_H_ |
| 25 | #define _ATSPI_VERSION_H_ |
| 26 | |
| 27 | G_BEGIN_DECLS |
| 28 | |
| 29 | /** |
| 30 | * ATSPI_MAJOR_VERSION: |
| 31 | * |
| 32 | * The major version of AT-SPI used at compile time. |
| 33 | * |
| 34 | * Since: 2.50.0 |
| 35 | */ |
| 36 | #define ATSPI_MAJOR_VERSION (2) |
| 37 | |
| 38 | /** |
| 39 | * ATSPI_MINOR_VERSION: |
| 40 | * |
| 41 | * The minor version of AT-SPI used at compile time. |
| 42 | * |
| 43 | * Since: 2.50.0 |
| 44 | */ |
| 45 | #define ATSPI_MINOR_VERSION (52) |
| 46 | |
| 47 | /** |
| 48 | * ATSPI_MICRO_VERSION: |
| 49 | * |
| 50 | * The micro version / patch level of AT-SPI used at compile time. |
| 51 | * |
| 52 | * Since: 2.50.0 |
| 53 | */ |
| 54 | #define ATSPI_MICRO_VERSION (0) |
| 55 | |
| 56 | G_END_DECLS |
| 57 | |
| 58 | #endif /* _ATSPI_VERSION_H_ */ |
| 59 | |