24
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
2 |
// All rights reserved.
|
|
3 |
// This component and the accompanying materials are made available
|
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
|
5 |
// which accompanies this distribution, and is available
|
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
7 |
//
|
|
8 |
// Initial Contributors:
|
|
9 |
// Nokia Corporation - initial contribution.
|
|
10 |
//
|
|
11 |
// Contributors:
|
|
12 |
//
|
|
13 |
// Description:
|
|
14 |
//
|
|
15 |
|
|
16 |
/**@file
|
|
17 |
@internalAll */
|
|
18 |
#ifndef __DSTD_DEF_H
|
|
19 |
#define __DSTD_DEF_H
|
|
20 |
|
|
21 |
/**
|
|
22 |
DSTD Phone
|
|
23 |
@internalComponent
|
|
24 |
*/
|
|
25 |
#define DSTD_MODULE_NAME _L("DSTD")
|
|
26 |
#define DSTD_MODULE_NAME2 _L("DSTD.TSY")
|
|
27 |
#define DSTD_OPEN_CALL_FROM_PHONE_NAME _L("Pots::Harry")
|
|
28 |
#define DSTD_PHONE_NAME _L("Dummy")
|
|
29 |
#define DSTD_LINE_NAME _L("Pots")
|
|
30 |
#define DSTD_CALL_NAME _L("Harry")
|
|
31 |
#define DSTD_FAX_NAME _L("Fax")
|
|
32 |
#define DSTD_SLOW_PHONE_NAME _L("Slow_Phone")
|
|
33 |
|
|
34 |
#define DSTD_CALL_FULLNAME _L("Dummy::Pots::")
|
|
35 |
#define DSTD_LINE_FULLNAME _L("Dummy::Pots")
|
|
36 |
#define DSTDPM_LINE_FULLNAME _L("DummyPm::PotsPm")
|
|
37 |
|
|
38 |
#define DSTD_NETWORK_TYPE (RTelServer::ENetworkTypeWiredAnalog)
|
|
39 |
#define DSTDFC_NETWORK_TYPE (RTelServer::ENetworkTypeWiredAnalog)
|
|
40 |
#define DSTDPM_NETWORK_TYPE (RTelServer::ENetworkTypeMobileDigital)
|
|
41 |
#define DSTD_NUMBER_OF_LINES (1)
|
|
42 |
#define DSTDFC_NUMBER_OF_LINES (1)
|
|
43 |
#define DSTDPM_NUMBER_OF_LINES (1)
|
|
44 |
|
|
45 |
#define DSTDFC_OPEN_CALL_FROM_PHONE_NAME _L("PotsFC::HarryFC")
|
|
46 |
#define DSTDFC_PHONE_NAME _L("DummyFC")
|
|
47 |
#define DSTDFC_LINE_NAME _L("PotsFC")
|
|
48 |
#define DSTDFC_CALL_NAME _L("HarryFC")
|
|
49 |
#define DSTDFC_FAX_NAME _L("FaxFC")
|
|
50 |
#define DSTDFC_CALL_FULLNAME _L("DummyFC::PotsFC::HarryFC")
|
|
51 |
|
|
52 |
#define DSTDPM_OPEN_CALL_FROM_PHONE_NAME _L("PotsPm::HarryPm")
|
|
53 |
#define DSTDPM_PHONE_NAME _L("DummyPm")
|
|
54 |
#define DSTDPM_LINE_NAME _L("PotsPm")
|
|
55 |
#define DSTDPM_CALL_NAME _L("HarryPm")
|
|
56 |
#define DSTDPM_FAX_NAME _L("FaxPm")
|
|
57 |
#define DSTDPM_CALL_FULLNAME _L("DummyPm::PotsPm::HarryPm")
|
|
58 |
|
|
59 |
/**
|
|
60 |
here change to narrow-unicode
|
|
61 |
@internalComponent
|
|
62 |
*/
|
|
63 |
#define DSTD_NARROW _L8("Hello")
|
|
64 |
#define DSTD_UNICODE _L16("Hello")
|
|
65 |
|
|
66 |
#define DSTDFC_CALL_STATUS RCall::EStatusConnected
|
|
67 |
#define DSTDPM_CALL_STATUS RCall::EStatusConnecting
|
|
68 |
|
|
69 |
#define DSTDFC_LINE_STATUS RCall::EStatusConnected
|
|
70 |
#define DSTDPM_LINE_STATUS RCall::EStatusUnknown
|
|
71 |
|
|
72 |
#define DSTD_CALL_INDEX (0)
|
|
73 |
#define DSTDFC_CALL_INDEX (0)
|
|
74 |
#define DSTDPM_CALL_INDEX (0)
|
|
75 |
|
|
76 |
#define DSTD_NUMBER_OF_PHONES (4)
|
|
77 |
#define DSTDPM_CALL_FULL_NONAME _L("DummyPm::PotsPm::")
|
|
78 |
#define DSTD_CALL_STATUS RCall::EStatusIdle
|
|
79 |
#define DSTD_LINE_STATUS RCall::EStatusIdle
|
|
80 |
#define DSTD_PHONE_STATUS RPhone::EPhoneStatusPowerOn
|
|
81 |
|
|
82 |
#define DSTDFC_OPEN_PHONE_TIMEOUT 100000
|
|
83 |
|
|
84 |
#define DSTATICCALL_PHONE_NAME _L("DummySC")
|
|
85 |
#define DSTATICCALL_LINE_NAME _L("VoiceLine")
|
|
86 |
|
|
87 |
#endif
|