|
1 /* |
|
2 * Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * Name : MSatTsy_IPCDefs.h |
|
16 * Part of : SIM ATK TSY / commonsimatktsy |
|
17 * Interface : Internal, Common TSY Plugin API |
|
18 * Contains IPC definitions used by Multimode TSY Layering. |
|
19 * Version : 1.0 |
|
20 * |
|
21 */ |
|
22 |
|
23 |
|
24 |
|
25 #ifndef MSATTSY_IPCDEFS_H |
|
26 #define MSATTSY_IPCDEFS_H |
|
27 |
|
28 // INCLUDES |
|
29 #include <e32base.h> // Etel base |
|
30 |
|
31 // CONSTANTS |
|
32 |
|
33 // The internal SAT IPC values are agreed to be between 1001600 - 1002000 |
|
34 // See ETel_Telephony_Server_Design.doc, chapter 6.3 Policing Custom APIs |
|
35 const TInt KSatInternalIpcOffset = 1001600; |
|
36 const TInt KSatInternalIpcMaxOffset = 1002000; |
|
37 |
|
38 // Contains IPC definitions used by SAT TSY Layering. |
|
39 |
|
40 // TSatTsyLayerIPC enumerates IPC values used by SAT API. |
|
41 enum TSatTsyLayerIPC |
|
42 { |
|
43 ESatTsyReady = KSatInternalIpcOffset, |
|
44 ESatTsyPCmd, |
|
45 ESatTsyTimerExpiredIPC, |
|
46 ESatTsyGetIfPendingNotification, |
|
47 ESatTsyGetBearerCapability, |
|
48 ESatTsyGetIMEI, // 1001605 |
|
49 ESatTsyTimeZone, |
|
50 ESatTsyTimingAdvance, |
|
51 ESatTsyCreateEnvelope, |
|
52 ESatTsySendEnvelope, |
|
53 ESatTsyEnvelopeError, // 1001610 |
|
54 ESatTsyMoSmControlEnvelope, |
|
55 ESatTsyCallConnected, |
|
56 ESatTsyCallDisconnected, |
|
57 ESatTsyLocationStatus, |
|
58 ESatTsyMTCall, // 1001615 |
|
59 ESatTsyAccessTechnologyChange, |
|
60 ESatTsyCellBroadcast, |
|
61 ESatTsySmsPpDdl, |
|
62 ESatTsyReadCbmids, |
|
63 ESatTsyNetStatus, // 1001620 |
|
64 ESatTsyProvideLocalInfo, |
|
65 ESatTsyLocalInformationNmr, |
|
66 ESatTsyAccTech, |
|
67 ESatTsyNotifyLocalInfo, |
|
68 ESatTsyServiceRequest, // 1001625 |
|
69 ESatTsyRefresh, |
|
70 ESatTsyCompleteRefresh, |
|
71 ESatTsySetPolling, |
|
72 ESatTsySetProactiveCommandOnGoingStatus, |
|
73 ESatTsyGetIconData, // 1001630 |
|
74 ESatTsyGetImageInstance, |
|
75 ESatTsyGetClut, |
|
76 ESatTsyCallControlActivation, |
|
77 ESatTsyMoSmsControlActivation, |
|
78 ESatTsyUssdControlActivation, // 1001635 |
|
79 ESatTsySmsPpDdlStatus, |
|
80 ESatTsySsStatus, |
|
81 ESatTsyUssdStatus, |
|
82 ESatTsyImsiChanged, |
|
83 ESatTsyCheckAtkDataForAlphaId, // 1001640 |
|
84 ESatTsyCallEvent, |
|
85 ESatTsySSEvent, |
|
86 ESatTsyUSSDEvent, |
|
87 ESatTsyEmergencyNbrCheck, |
|
88 ESatTsyFdnStatusCheck, // 1001645 |
|
89 ESatTsyRemoveEventList, |
|
90 ESatTsySmsDeliverReport |
|
91 }; // end enum TSatTsyLayerIPC |
|
92 |
|
93 |
|
94 #endif // MSatTsy_IPCDefs_H |
|
95 |
|
96 // End of File |