|
1 /* |
|
2 * Copyright (c) 2007-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 the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.symbianfoundation.org/legal/licencesv10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * Name : sipclientresolverconfigcrkeys.h |
|
16 * Part of : SIP / SIP Client Resolver |
|
17 * Interface : SIP Client Resolver API |
|
18 * Version : 1.0 |
|
19 * |
|
20 */ |
|
21 |
|
22 |
|
23 |
|
24 #ifndef SIPCLIENTRESOLVERCONFIGCRKEYS_H |
|
25 #define SIPCLIENTRESOLVERCONFIGCRKEYS_H |
|
26 |
|
27 // INCLUDES |
|
28 #include <e32def.h> |
|
29 |
|
30 /** |
|
31 * @file |
|
32 * @publishedAll |
|
33 * @released |
|
34 */ |
|
35 |
|
36 /// Defines configuration parameters used by SIP Client Resolver |
|
37 const TUid KCRUidSIPClientResolverConfig = { 0x10282EE7 }; |
|
38 |
|
39 /// Mask for the less significant bits in setting keys. |
|
40 /// These bits are reserved for field type information. |
|
41 const TUint32 KSIPClientResolverFieldTypeMask = 0xf0000000; |
|
42 |
|
43 /// Mask for the most significant bits in setting keys. |
|
44 /// These bits are reserved for the actual key part. |
|
45 const TUint32 KSIPClientResolverKeyMask = 0x0fffffff; |
|
46 |
|
47 /** |
|
48 * Mask for username field. |
|
49 * Field type is TDesC8. |
|
50 */ |
|
51 const TUint32 KSIPClientResolverUserNameMask = 0x10000000; |
|
52 |
|
53 /** |
|
54 * Mask for plug-in implementation UID field. |
|
55 * Field type is TInt32. |
|
56 */ |
|
57 const TUint32 KSIPClientResolverPluginUIDMask = 0x20000000; |
|
58 |
|
59 /** |
|
60 * Mask for client UID field. |
|
61 * Field type is TInt32. |
|
62 */ |
|
63 const TUint32 KSIPClientResolverClientUIDMask = 0x30000000; |
|
64 |
|
65 #endif // SIPCLIENTRESOLVERCONFIGCRKEYS_H |
|
66 |
|
67 // End of File |