File: version.h

package info (click to toggle)
scantool 2.1-2.1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 1,168 kB
  • sloc: ansic: 5,576; makefile: 104; python: 41
file content (24 lines) | stat: -rw-r--r-- 601 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef VERSION_H
#define VERSION_H

#define SCANTOOL_VERSION          2
#define SCANTOOL_SUB_VERSION      1
#define SCANTOOL_WIP_VERSION      0
#define SCANTOOL_VERSION_STR      "2.1"
#define SCANTOOL_VERSION_EX_STR   "2.1"
#define SCANTOOL_YEAR_STR         "2020"
#define SCANTOOL_DATE             20200314    /* yyyymmdd */

#ifdef ALLEGRO_WINDOWS
   #define SCANTOOL_PLATFORM_STR   "Windows"
#else
 #ifdef TERMIOS
   #define SCANTOOL_PLATFORM_STR   "POSIX"
 #else
   #define SCANTOOL_PLATFORM_STR   "DOS"
 #endif
#endif

#define SCANTOOL_COPYRIGHT_STR     "Copyright  " SCANTOOL_YEAR_STR

#endif