Subversion Repositories pentevo

Rev

Blame | Last modification | View Log | Download | RSS feed | ?url?

  1. #ifndef _VERSION_H
  2. #define _VERSION_H
  3. /* version.h */
  4. /*****************************************************************************/
  5. /* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only                     */
  6. /*                                                                           */
  7. /* ASL                                                                       */
  8. /*                                                                           */
  9. /* Keeps Version Number(s)                                                   */
  10. /*                                                                           */
  11. /*****************************************************************************/
  12.  
  13. #include "datatypes.h"
  14.  
  15. #define AS_VERSION_MAJOR 1
  16. #define AS_VERSION_MINOR 42
  17. #define AS_VERSION_BUILD 266
  18.  
  19. /* The standard C stringification magic: */
  20.  
  21. #define STR_STRING(x)   #x
  22. #define STR(x)          STR_STRING(x)
  23.  
  24. extern const char *Version;
  25. extern LongInt VerNo;
  26.  
  27. extern const char *InfoMessCopyright;
  28.  
  29. extern LongInt Magic;
  30.  
  31. extern void version_init(void);
  32.  
  33. #endif /* _VERSION_H */
  34.