2008-05-04 21:53:36 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2009-08-21 20:21:05 +00:00
|
|
|
/*
|
|
|
|
* This file is part of OpenTTD.
|
|
|
|
* OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
|
|
|
|
* OpenTTD 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 General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2013-01-08 22:46:42 +00:00
|
|
|
/** @file rev.h declaration of OTTD revision dependent variables */
|
2008-05-04 21:53:36 +00:00
|
|
|
|
|
|
|
#ifndef REV_H
|
|
|
|
#define REV_H
|
|
|
|
|
|
|
|
extern const char _openttd_revision[];
|
2009-09-04 20:31:49 +00:00
|
|
|
extern const char _openttd_build_date[];
|
2008-06-03 18:35:58 +00:00
|
|
|
extern const byte _openttd_revision_modified;
|
2008-05-04 21:53:36 +00:00
|
|
|
extern const uint32 _openttd_newgrf_version;
|
|
|
|
|
2011-08-21 18:57:45 +00:00
|
|
|
bool IsReleasedVersion();
|
|
|
|
|
2008-05-04 21:53:36 +00:00
|
|
|
#endif /* REV_H */
|