equal
deleted
inserted
replaced
|
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 #include <e32def.h> |
|
17 |
|
18 /* |
|
19 * patchable const data values |
|
20 * |
|
21 * these values control whether apparc tries to save memory by unloading data |
|
22 * recognizers when they are not being used |
|
23 * |
|
24 * To patch these values, add a line to an iby or oby file that is included in the rom being built using the following format: |
|
25 * |
|
26 * "patchdata <dll> @ <symbol> <newvalue>" |
|
27 * |
|
28 * e.g. to enable on-demand recognizer loading, use the following line: |
|
29 * "patchdata mmfdrmpluginserverproxy.dll @ KMmfDrmPluginServerTimeOut 10000000" |
|
30 */ |
|
31 |
|
32 |
|
33 /** |
|
34 * Patchable constant. Determines how long (in microseconds) the DRM Plugin server may remain active |
|
35 * before it gets shutdown. |
|
36 * |
|
37 * @SYMPatchable |
|
38 * @see KMmfDrmPluginServerTimeOut |
|
39 * |
|
40 */ |
|
41 EXPORT_C extern const TInt KMmfDrmPluginServerTimeOut = 5000000; // 5 seconds in microseconds |
|
42 |