equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2006 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: DRMSettingsPlugin internal Central Repository keys. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef DRMSETTINGSPLUGININTERNALCRKEYS_H |
|
20 #define DRMSETTINGSPLUGININTERNALCRKEYS_H |
|
21 |
|
22 // INCLUDES |
|
23 #include <e32def.h> |
|
24 |
|
25 // CONSTANTS |
|
26 |
|
27 |
|
28 /** |
|
29 * Security settings CR UID |
|
30 */ |
|
31 const TUid KCRUidDRMSettings = {0x102823B4}; |
|
32 |
|
33 /** |
|
34 * Transaction Tracking status |
|
35 * Possible values are: |
|
36 * 0 = disabled |
|
37 * 1 = enabled |
|
38 */ |
|
39 const TUint32 KDRMSettingsTransactionTracking = 0x00000001; |
|
40 |
|
41 /** |
|
42 * Silent Rights Acquisition status |
|
43 * Possible values are: |
|
44 * 0 = not allowed |
|
45 * 1 = allowed |
|
46 */ |
|
47 const TUint32 KDRMSettingsSilentRightsAcquisition = 0x00000002; |
|
48 |
|
49 #endif // DRMSETTINGSINTERNALCRKEYS_H |
|
50 |
|
51 // End of file |