blob: 19907331941ba5e2db8eb1c14c975949e41c62fb (
plain) (
blame)
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
|
#include <online.dcl>
/*
Get version id for display
If triple verse A_B_C then
Inputs:
1 - returns "A"
2 - returns "B"
3 - returns "A_B"
4 - returns "C"
5 - returns "A_C"
6 - returns "B_C"
7 - returns "A_B_C"
*/
CHAR *GETVRSN(int version)
{
extern struct zonline online;
static CHAR versionid[16];
X("Getvrsn");
if (version < 1 || version > 7) then
call ERROR("Version Id Invalid");
versionid[0] = 0;
if (version & 1) then
{
strcat(versionid, "_");
STRCAT(versionid, &online.versions[0][0], 16, "Getrsn-1");
}
if (version & 2) then
{
if (online.versions[1][0] != 0) then
{
strcat(versionid, "_");
STRCAT(versionid, &online.versions[1][0], 16, "Getrsn-2");
}
}
if (version & 4) then
{
if (online.versions[2][0] != 0) then
{
strcat(versionid, "_");
STRCAT(versionid, &online.versions[2][0], 16, "Getrsn-3");
}
}
Y();
return(&versionid[1]);
}
|