equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005 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: Structure used for signalling various branding-related things |
|
15 * to other DLLs. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef SSERVERPREFERS_H |
|
21 #define SSERVERPREFERS_H |
|
22 |
|
23 /** |
|
24 * @since 2.1 |
|
25 * iUseGrant - ETrue if grant list is used. EFalse if not |
|
26 * iAliasUsed - ETrue if alias support enabled |
|
27 * iLocalEchoInGroup - ETrue if locally echoing conversed texts in groups |
|
28 * iReactiveAuthorization - ETrue if reactive authorization support is enabled |
|
29 */ |
|
30 struct SServerPrefers |
|
31 { |
|
32 TBool iUseGrant; |
|
33 TBool iAliasUsed; |
|
34 TBool iLocalEchoInGroup; |
|
35 TBool iReactiveAuthorization; |
|
36 }; |
|
37 |
|
38 #endif // SSERVERPREFERS_H |
|
39 |
|
40 // End of File |