sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
// ECOM.IBY
|
sl@0
|
18 |
//
|
sl@0
|
19 |
// Obey file for GT 103 Plug-in Architecture project
|
sl@0
|
20 |
// components
|
sl@0
|
21 |
|
sl@0
|
22 |
#ifndef __ECOM_IBY__
|
sl@0
|
23 |
#define __ECOM_IBY__
|
sl@0
|
24 |
|
sl@0
|
25 |
// Make sure the error strings appear in the ROM
|
sl@0
|
26 |
data=MULTI_LINGUIFY(RSC ZRESOURCE\errors\ecomerr Resource\Errors\ecomerr)
|
sl@0
|
27 |
|
sl@0
|
28 |
// Framework Components
|
sl@0
|
29 |
file=ABI_DIR\BUILD_DIR\ecom.dll System\Libs\ECom.dll
|
sl@0
|
30 |
file=ABI_DIR\BUILD_DIR\ecomserver.exe System\Libs\EComServer.exe
|
sl@0
|
31 |
file=ABI_DIR\BUILD_DIR\ecompatchdata.dll System\Libs\EComPatchData.dll
|
sl@0
|
32 |
|
sl@0
|
33 |
//
|
sl@0
|
34 |
// ECOM uses a custom scheme to do patchable constants. Licensees are instructed to
|
sl@0
|
35 |
// edit EPOCROOT##epoc32\rom\include\ecompatchconstants.hby if they want to patch anyone of
|
sl@0
|
36 |
// the patchable constants below. Direct use of the patchdata command outside here
|
sl@0
|
37 |
// is not supported because ECOM may change which binaries need the patches.
|
sl@0
|
38 |
//
|
sl@0
|
39 |
#include <ecompatchconstants.hby>
|
sl@0
|
40 |
|
sl@0
|
41 |
#ifdef ECOM_PATCHDATA_KLISTIMPLBUFFERSIZE
|
sl@0
|
42 |
patchdata ecompatchdata.dll@KListImplBufferSize ECOM_PATCHDATA_KLISTIMPLBUFFERSIZE
|
sl@0
|
43 |
#endif
|
sl@0
|
44 |
|
sl@0
|
45 |
#ifdef ECOM_PATCHDATA_KDISCOVERYDISABLEDDRIVELIST
|
sl@0
|
46 |
patchdata ecomserver.exe@KDiscoveryDisabledDriveList ECOM_PATCHDATA_KDISCOVERYDISABLEDDRIVELIST
|
sl@0
|
47 |
#endif
|
sl@0
|
48 |
|
sl@0
|
49 |
#ifdef ECOM_PATCHDATA_KCUSTOMRESOLVERCACHESIZE
|
sl@0
|
50 |
patchdata ecomserver.exe@KCustomResolverCacheSize ECOM_PATCHDATA_KCUSTOMRESOLVERCACHESIZE
|
sl@0
|
51 |
#endif
|
sl@0
|
52 |
|
sl@0
|
53 |
#ifdef ECOM_PATCHDATA_KCUSTOMRESOLVERCACHETIMEOUT
|
sl@0
|
54 |
patchdata ecomserver.exe@KCustomResolverCacheTimeout ECOM_PATCHDATA_KCUSTOMRESOLVERCACHETIMEOUT
|
sl@0
|
55 |
#endif
|
sl@0
|
56 |
|
sl@0
|
57 |
#endif
|