equal
deleted
inserted
replaced
|
1 // Copyright (c) 2008-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 <mtp/mtpdataproviderconfig.rh> |
|
17 |
|
18 |
|
19 STRUCT ELEMENTSARRAY |
|
20 { |
|
21 STRUCT elements[]; |
|
22 } |
|
23 |
|
24 |
|
25 STRUCT DP_LOADING_CONFIG |
|
26 { |
|
27 LONG syncdp_uid; // SyncDP UID |
|
28 LONG transport_uid[]; // array of Transport UIDs |
|
29 } |
|
30 |
|
31 RESOURCE ELEMENTSARRAY r_elements_info |
|
32 { |
|
33 elements= |
|
34 { |
|
35 DP_LOADING_CONFIG |
|
36 { |
|
37 syncdp_uid = 0x2001B137; |
|
38 transport_uid = { |
|
39 0x102827AC, |
|
40 0xA0004A61 |
|
41 }; |
|
42 } |
|
43 //ADD New Data Provider Uid's with the supported Transport ID's |
|
44 }; |
|
45 |
|
46 } |