2000-05-28 13:40:48 +00:00
|
|
|
/*****************************************************************************/
|
2013-05-09 11:56:54 +00:00
|
|
|
/* */
|
|
|
|
/* version.h */
|
|
|
|
/* */
|
|
|
|
/* Version information for the cc65 compiler package */
|
|
|
|
/* */
|
|
|
|
/* */
|
|
|
|
/* */
|
2009-09-28 20:10:01 +00:00
|
|
|
/* (C) 1998-2009, Ullrich von Bassewitz */
|
2008-04-21 20:11:14 +00:00
|
|
|
/* Roemerstrasse 52 */
|
2005-09-10 12:53:11 +00:00
|
|
|
/* D-70794 Filderstadt */
|
|
|
|
/* EMail: uz@cc65.org */
|
2013-05-09 11:56:54 +00:00
|
|
|
/* */
|
|
|
|
/* */
|
|
|
|
/* This software is provided 'as-is', without any expressed or implied */
|
2000-05-28 13:40:48 +00:00
|
|
|
/* warranty. In no event will the authors be held liable for any damages */
|
2013-05-09 11:56:54 +00:00
|
|
|
/* arising from the use of this software. */
|
|
|
|
/* */
|
2000-05-28 13:40:48 +00:00
|
|
|
/* Permission is granted to anyone to use this software for any purpose, */
|
|
|
|
/* including commercial applications, and to alter it and redistribute it */
|
2013-05-09 11:56:54 +00:00
|
|
|
/* freely, subject to the following restrictions: */
|
|
|
|
/* */
|
2000-05-28 13:40:48 +00:00
|
|
|
/* 1. The origin of this software must not be misrepresented; you must not */
|
|
|
|
/* claim that you wrote the original software. If you use this software */
|
|
|
|
/* in a product, an acknowledgment in the product documentation would be */
|
2013-05-09 11:56:54 +00:00
|
|
|
/* appreciated but is not required. */
|
2000-05-28 13:40:48 +00:00
|
|
|
/* 2. Altered source versions must be plainly marked as such, and must not */
|
2013-05-09 11:56:54 +00:00
|
|
|
/* be misrepresented as being the original software. */
|
|
|
|
/* 3. This notice may not be removed or altered from any source */
|
|
|
|
/* distribution. */
|
|
|
|
/* */
|
2000-05-28 13:40:48 +00:00
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef VERSION_H
|
|
|
|
#define VERSION_H
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
2009-09-28 20:10:01 +00:00
|
|
|
/* Code */
|
2000-05-28 13:40:48 +00:00
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-09-28 20:10:01 +00:00
|
|
|
const char* GetVersionAsString (void);
|
|
|
|
/* Returns the version number as a string in a static buffer */
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2009-09-28 20:10:01 +00:00
|
|
|
unsigned GetVersionAsNumber (void);
|
|
|
|
/* Returns the version number as a combined unsigned for use in a #define */
|
2003-08-12 15:10:24 +00:00
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* End of version.h */
|
|
|
|
|
|
|
|
#endif
|