63 lines
2.4 KiB
C
63 lines
2.4 KiB
C
|
|
||
|
// ------------------------------------------------------------------
|
||
|
// GoldED+
|
||
|
// Copyright (C) 1990-1999 Odinn Sorensen
|
||
|
// Copyright (C) 1999-2004 Alexander S. Aganichev
|
||
|
// Copyright (C) 2005 Stas Degteff
|
||
|
// ------------------------------------------------------------------
|
||
|
// This program 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; either version 2 of the
|
||
|
// License, or (at your option) any later version.
|
||
|
//
|
||
|
// This program 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 this program; if not, write to the Free Software
|
||
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
||
|
// MA 02111-1307 USA
|
||
|
//
|
||
|
// See also http://www.gnu.org
|
||
|
// ------------------------------------------------------------------
|
||
|
// $Id$
|
||
|
// ------------------------------------------------------------------
|
||
|
// Global data: Golded+ version information.
|
||
|
// ------------------------------------------------------------------
|
||
|
|
||
|
#ifndef __GOLDED3_H
|
||
|
#define __GOLDED3_H
|
||
|
|
||
|
// ------------------------------------------------------------------
|
||
|
// Global compile constants
|
||
|
|
||
|
extern const char* __gver_vendor_name__;
|
||
|
extern const char* __gver_vendor_fido__;
|
||
|
extern const char* __gver_vendor_email__;
|
||
|
extern const char* __gver_prename__;
|
||
|
extern const char* __gver_preshortname__;
|
||
|
extern const char* __gver_name__;
|
||
|
extern const char* __gver_shortname__;
|
||
|
extern const char* __gver_shortlogname__;
|
||
|
extern const char* __gver_postshortname__;
|
||
|
extern const char* __gver_postname__;
|
||
|
extern const char* __gver_platform__;
|
||
|
extern const char* __gver_shortplatform__;
|
||
|
extern const char* __gver_cfgext__;
|
||
|
extern const char* __gver_preversion__;
|
||
|
extern const char* __gver_postversion__;
|
||
|
extern int __gver_major__;
|
||
|
extern int __gver_minor__;
|
||
|
extern int __gver_release__;
|
||
|
extern const char* __gver_releasename__;
|
||
|
extern const char* __gver_date__;
|
||
|
extern const char* __gver_time__;
|
||
|
extern const char* __gver_longpid__;
|
||
|
extern const char* __gver_shortpid__;
|
||
|
extern const char* __gver_ver__;
|
||
|
extern const char* __gver_shortver__;
|
||
|
|
||
|
#endif
|