-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathversion.h
55 lines (46 loc) · 1.53 KB
/
version.h
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
50
51
52
53
54
55
/******************************************************************
* VERSION.H
******************************************************************/
/******************************************************************
*
* Version 1.70
*
* Copyright (c) 1992,1993,1994,1995,1996,1997,1998,1999
* by Dirk Meyer, All rights reserved.
* Im Grund 4, 34317 Habichtswald, Germany
* Email: [email protected]
*
* 1.64
* - Angepasst an die OS/2-Version
*
******************************************************************/
#ifndef VERSION_INCLUDE
#define VERSION_INCLUDE
/******************************************************************
*
* Version und Release Definition
*
******************************************************************/
#define TOOL_VERSION "1.70"
#define ENV_CONFIG_DATEI C_DINOEX
#define ENV_CONFIG_PORT C_DINOEX_PORT
#if !defined(OS2)
#define START_MESSAGE "\n-- Dinoex %s " \
TOOL_VERSION " , " \
"Copyright (c) 1992,93,94,95,96,97,98,99\n" \
" by Dirk Meyer, All rights reserved," \
" Email: [email protected]\n"
#else
#define START_MESSAGE "\nDinoex %s/2 " \
TOOL_VERSION ", " \
"(c) 1992-98 Dirk Meyer, " \
"Email: [email protected]\n" \
"OS/2 Edition (c) 1997-98 Hinrich Donner, " \
"All rights reserved. EMail: [email protected]\n"
#endif
#define GET_NEXT_DATA(x) { argv++; argc--; x = *argv; \
if (x == NULL) usage(); }
#endif
/******************************************************************
* END OF FILE VERSION.H
******************************************************************/