Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
2 * Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
15 * Name : sipclientresolverconfigcrkeys.h
16 * Part of : SIP / SIP Client Resolver
17 * Interface : SIP Client Resolver API
24 #ifndef SIPCLIENTRESOLVERCONFIGCRKEYS_H
25 #define SIPCLIENTRESOLVERCONFIGCRKEYS_H
36 /// Defines configuration parameters used by SIP Client Resolver
37 const TUid KCRUidSIPClientResolverConfig = { 0x10282EE7 };
39 /// Mask for the less significant bits in setting keys.
40 /// These bits are reserved for field type information.
41 const TUint32 KSIPClientResolverFieldTypeMask = 0xf0000000;
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;
48 * Mask for username field.
49 * Field type is TDesC8.
51 const TUint32 KSIPClientResolverUserNameMask = 0x10000000;
54 * Mask for plug-in implementation UID field.
55 * Field type is TInt32.
57 const TUint32 KSIPClientResolverPluginUIDMask = 0x20000000;
60 * Mask for client UID field.
61 * Field type is TInt32.
63 const TUint32 KSIPClientResolverClientUIDMask = 0x30000000;
65 #endif // SIPCLIENTRESOLVERCONFIGCRKEYS_H