~bialix/fte-mirror/tag-fixup.before-cvs-support

« back to all changes in this revision

Viewing changes to src/ftever.h

  • Committer: cvs2svn
  • Date: 2003-07-16 00:04:56 UTC
  • mfrom: (201)
  • Revision ID: admin@example.com-20030716000456-79o4ogy6zduzth2y
Tags: before-cvs-support
This commit was manufactured by cvs2svn to create tag 'before-cvs-support'.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#ifndef __FTEVER_H
2
2
#define __FTEVER_H
3
3
 
4
 
#define MAKE_VERSION(major,minor,release) ((major<<24L) | (minor << 16L) | release)
5
 
 
6
 
#define PROG_FTE      "fte"
7
 
#define PROG_CFTE     "cfte"
8
 
#define PROGRAM       PROG_FTE
9
 
#define EXTRA_VERSION "-cvs"
10
 
#define VERSION       "0.49.13" EXTRA_VERSION
11
 
#define VERNUM        MAKE_VERSION(0x00, 0x49, 0x0402)
12
 
#define COPYRIGHT     "Copyright (c) 1994-1998 Marko Macek\n" \
13
 
                      "Copyright (c) 2000-2003 Others"
14
 
 
 
4
#define PROG_FTE   "fte"
 
5
#define PROG_CFTE  "cfte"
 
6
#define PROGRAM    PROG_FTE
 
7
#define VERSION    "0.49.13"
 
8
#define VERNUM     0x00490401UL
 
9
#define COPYRIGHT  "Copyright (c) 1994-1998 Marko Macek\n" \
 
10
                   "Copyright (c) 2000-2001 Others"
15
11
#endif