File: version.h

package info (click to toggle)
tin 981002-2
  • links: PTS
  • area: non-free
  • in suites: slink
  • size: 3,088 kB
  • ctags: 4,969
  • sloc: ansic: 46,800; sh: 1,655; makefile: 1,144; yacc: 699; perl: 103
file content (49 lines) | stat: -rw-r--r-- 1,021 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*
 *  Project   : tin - a Usenet reader
 *  Module    : version.h
 *  Author    : I. Lea
 *  Created   : 1991-04-01
 *  Updated   : 1998-08-10
 *  Notes     :
 *  Copyright : (c) Copyright 1991-98 by Iain Lea
 *              You may  freely  copy or  redistribute  this software,
 *              so  long as there is no profit made from its use, sale
 *              trade or  reproduction.  You may not change this copy-
 *              right notice, and it must be included in any copy made
 */

#ifndef VERSION_H
#	define VERSION_H	1

#	define PRODUCT		"tin"
#	define VERSION		"pre-1.4"
#	define RELEASEDATE	"981002"
#	define RELEASENAME	"Phobia"
#	define TINRC_VERSION	"1.1"

#	ifdef M_AMIGA
#		define	OS	"AMIGA"
#		define	AMIVER	"1.3B"
#	endif

#	ifdef M_OS2
#		define	OS	"OS/2"
#	endif

#	ifdef M_UNIX
#		if !defined( __amiga )
#			define	OS	"UNIX"
#		else
#			define	OS	"AMIGA"
#		endif
#	endif

#	ifdef WIN32
#		define	OS	"Windows/NT"
#	endif

#	ifndef OS
#		define	OS "Unknown"
#	endif

#endif /* !VERSION_H */