|
1 /* |
|
2 * Copyright (c) 2007 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: Constants for Back Stepping Service Provider |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef BS_SERVICE_CONSTANTS_H |
|
20 #define BS_SERVICE_CONSTANTS_H |
|
21 |
|
22 // BS Service implementation UID |
|
23 const TInt KBSServiceImplUid( 0x2000F840); |
|
24 |
|
25 // from LIW |
|
26 _LIT8( KGenericParamServiceCmdIDStr, "cmd" ); |
|
27 |
|
28 // BSS Service and Interface ID |
|
29 _LIT8( KBSServiceID, "Service.BackStepping" ); |
|
30 _LIT8( KBSInterface, "IBackStepping" ); |
|
31 |
|
32 // BSS commands |
|
33 _LIT8( KBSCmdInitialize, "Initialize" ); |
|
34 _LIT8( KBSCmdForwardActivationEvent, "ForwardActivationEvent" ); |
|
35 _LIT8( KBSCmdHandleBackCommand, "HandleBackCommand" ); |
|
36 |
|
37 // BSS in param names |
|
38 _LIT8( KBSInParamAppUid, "AppUid" ); |
|
39 _LIT8( KBSInParamState, "State" ); |
|
40 _LIT8( KBSInParamEnter, "Enter" ); |
|
41 _LIT8( KBSInParamCheckOnly, "CheckOnly" ); |
|
42 |
|
43 // BSS out param names |
|
44 _LIT8( KBSOutParamStatusInfo, "StatusInfo" ); |
|
45 |
|
46 #endif // BS_SERVICE_CONSTANTS_H |