blob: 9bc45601e019001c6d783b522bf1c0899811250f (
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
|
--- estic/icbaseed.cc.orig Sat Nov 30 01:00:44 1996
+++ estic/icbaseed.cc Tue Sep 6 09:54:21 2005
@@ -451,26 +451,26 @@
// otherwise, Changed is left untouched.
{
// ID's of menue items for EditBaseConfig
- const miIstecType = 10;
- const miProtocol = 20;
- const miExtLevel = 30;
- const miMusic = 40;
- const miConnection = 50;
- const miNumber1 = 60;
- const miNumber2 = 70;
- const miTFEAssignment = 80;
- const miQueryLoc = 90;
- const miMSN = 100;
- const miMSNGroups = 110;
- const miEAZGroups = 120;
- const miExternalMusicPort = 130;
- const miCountryCode = 140;
- const miSignaling = 150;
+ const int miIstecType = 10;
+ const int miProtocol = 20;
+ const int miExtLevel = 30;
+ const int miMusic = 40;
+ const int miConnection = 50;
+ const int miNumber1 = 60;
+ const int miNumber2 = 70;
+ const int miTFEAssignment = 80;
+ const int miQueryLoc = 90;
+ const int miMSN = 100;
+ const int miMSNGroups = 110;
+ const int miEAZGroups = 120;
+ const int miExternalMusicPort = 130;
+ const int miCountryCode = 140;
+ const int miSignaling = 150;
// Values for the miMusic toggle item
- const musOff = 0;
- const musInternal = 1;
- const musExternal = 2;
+ const int musOff = 0;
+ const int musInternal = 1;
+ const int musExternal = 2;
|