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: The ECOM interface implementation. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #include "musaiwproviderstubs.h" |
|
20 |
|
21 // possible locations of compiled resource file |
|
22 |
|
23 _LIT( KMusAiwProviderResource1, "c:\\sys\\bin\\musaiwprovider2.rsc" ); |
|
24 _LIT( KMusAiwProviderResource2, "c:\\sys\\bin\\musaiwprovider3.rsc" ); |
|
25 |
|
26 const TDesC& MusAiwResourceFinderStub::ResourceFilenameRom() |
|
27 { |
|
28 return KMusAiwProviderResource1(); |
|
29 } |
|
30 |
|
31 const TDesC& MusAiwResourceFinderStub::ResourceFilenameRam() |
|
32 { |
|
33 return KMusAiwProviderResource2(); |
|
34 } |
|
35 |
|
36 |
|
37 // end of file |
|