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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
--- estic/icdevs.cc.orig Wed Mar 5 21:48:44 1997
+++ estic/icdevs.cc Tue Sep 6 09:54:21 2005
@@ -157,8 +157,8 @@
String DevListBox::RerouteName (const String& Num)
// Map the reroute capability to a string with fixed length
{
- const StringLength = 18;
- const PadLength = 21;
+ const int StringLength = 18;
+ const int PadLength = 21;
String Res (PadLength);
if (Num.IsEmpty ()) {
@@ -269,9 +269,9 @@
static void EditExtReroute (const Point& Pos, IstecDevConfig& Config)
// Edit the extended reroute capabilities of FW 2.0 in a separate menu
{
- const miPhone = 10;
- const miCondition = 20;
- const miRingCount = 30;
+ const int miPhone = 10;
+ const int miCondition = 20;
+ const int miRingCount = 30;
// Load the menu
Menue* M = (Menue*) LoadResource ("@ICDEVS.RerouteMenue");
@@ -407,38 +407,38 @@
static const String StgPosName = "EditDevConfig.ConfigMenue.Position";
// Menue constants
- const miDialCaps = 10;
- const miService = 20;
- const miReroute = 30; // Simple reroute, pre-2.00
- const miChargePulse = 40;
- const miPIN = 50;
- const miTerminalMode = 60;
- const miKnockInt = 70;
- const miKnockExt = 80;
- const miKnockTFE = 90;
- const miExtReroute = 100; // Extended reroute, 2.00 and up
- const miKnockInt21 = 1000;
- const miKnockInt22 = 1010;
- const miKnockInt23 = 1020;
- const miKnockInt24 = 1030;
- const miKnockInt25 = 1040;
- const miKnockInt26 = 1050;
- const miKnockInt27 = 1060;
- const miKnockInt28 = 1070;
- const miKnockMSN0 = 1100;
- const miKnockMSN1 = 1110;
- const miKnockMSN2 = 1120;
- const miKnockMSN3 = 1130;
- const miKnockMSN4 = 1140;
- const miKnockMSN5 = 1150;
- const miKnockMSN6 = 1160;
- const miKnockMSN7 = 1170;
- const miKnockMSN8 = 1180;
- const miKnockMSN9 = 1190;
- const miKnockTFE1 = 1200;
- const miKnockTFE2 = 1210;
- const miKnockTFE3 = 1220;
- const miKnockTFE4 = 1230;
+ const int miDialCaps = 10;
+ const int miService = 20;
+ const int miReroute = 30; // Simple reroute, pre-2.00
+ const int miChargePulse = 40;
+ const int miPIN = 50;
+ const int miTerminalMode = 60;
+ const int miKnockInt = 70;
+ const int miKnockExt = 80;
+ const int miKnockTFE = 90;
+ const int miExtReroute = 100; // Extended reroute, 2.00 and up
+ const int miKnockInt21 = 1000;
+ const int miKnockInt22 = 1010;
+ const int miKnockInt23 = 1020;
+ const int miKnockInt24 = 1030;
+ const int miKnockInt25 = 1040;
+ const int miKnockInt26 = 1050;
+ const int miKnockInt27 = 1060;
+ const int miKnockInt28 = 1070;
+ const int miKnockMSN0 = 1100;
+ const int miKnockMSN1 = 1110;
+ const int miKnockMSN2 = 1120;
+ const int miKnockMSN3 = 1130;
+ const int miKnockMSN4 = 1140;
+ const int miKnockMSN5 = 1150;
+ const int miKnockMSN6 = 1160;
+ const int miKnockMSN7 = 1170;
+ const int miKnockMSN8 = 1180;
+ const int miKnockMSN9 = 1190;
+ const int miKnockTFE1 = 1200;
+ const int miKnockTFE2 = 1210;
+ const int miKnockTFE3 = 1220;
+ const int miKnockTFE4 = 1230;
// Save the configuration into a memory stream, remember the CRC
|