|
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: Private Publish&Subscribe definitions of the |
|
15 * Security UIs subsystem |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef SECURITYUISPRIVATEPSKEYS_H |
|
21 #define SECURITYUISPRIVATEPSKEYS_H |
|
22 |
|
23 // INCLUDES |
|
24 |
|
25 //CONSTANTS |
|
26 |
|
27 const TUid KPSUidSecurityUIs = { 0x100059b5 }; |
|
28 // ============================================================================= |
|
29 // Security Code UI Originator API |
|
30 // ============================================================================= |
|
31 |
|
32 // Use TUid KPSUidSecurityUIs = { 0x100059b5 } |
|
33 |
|
34 /** |
|
35 * Used by SecUI to differentiate between ETel API originated and SecUI originated |
|
36 * security queries. |
|
37 * Old Shared Data constant name: KSecUIOriginatedQuery |
|
38 */ |
|
39 const TUint32 KSecurityUIsSecUIOriginatedQuery = 0x00000301; |
|
40 enum TSecurityUIsSecUIOriginatedQuery |
|
41 { |
|
42 ESecurityUIsSecUIOriginatedUninitialized = 0, |
|
43 ESecurityUIsETelAPIOriginated, |
|
44 ESecurityUIsSecUIOriginated, |
|
45 ESecurityUIsSystemLockOriginated |
|
46 }; |
|
47 |
|
48 /** |
|
49 * Used by SecUI to tell if a query request set by some ETELMM API lock setting function (i.e. SetXXXXSetting) |
|
50 * has been canceled sinnce canceling the setting request does not prompt a query cancel event from ETEL. |
|
51 * Old Shared Data constant name: KSecUIOriginatedQuery |
|
52 */ |
|
53 const TUint32 KSecurityUIsQueryRequestCancel = 0x00000302; |
|
54 enum TSecurityUIsQueryRequestCancel |
|
55 { |
|
56 ESecurityUIsQueryRequestUninitialized = 0, |
|
57 ESecurityUIsQueryRequestOk, |
|
58 ESecurityUIsQueryRequestCanceled |
|
59 }; |
|
60 |
|
61 #endif // SECURITYUISPRIVATEPSKEYS_H |
|
62 |
|
63 // End of File |
|
64 |