34 lines
1.0 KiB
C
34 lines
1.0 KiB
C
/*
|
|
* gta_version.h
|
|
*
|
|
* This file is part of libgta, a library that implements the Generic Tagged
|
|
* Array (GTA) file format.
|
|
*
|
|
* Copyright (C) 2010, 2011
|
|
* Martin Lambers <marlam@marlam.de>
|
|
*
|
|
* Libgta is free software: you can redistribute it and/or modify it under the
|
|
* terms of the GNU Lesser General Public License as published by the Free
|
|
* Software Foundation, either version 2.1 of the License, or (at your option)
|
|
* any later version.
|
|
*
|
|
* Libgta is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
|
|
* details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with Libgta. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef GTA_VERSION_H
|
|
#define GTA_VERSION_H
|
|
|
|
#define GTA_VERSION "1.0.8"
|
|
#define GTA_VERSION_MAJOR 1
|
|
#define GTA_VERSION_MINOR 0
|
|
#define GTA_VERSION_PATCH 8
|
|
#define GTA_VERSION_NUMBER 0x010008
|
|
|
|
#endif
|