equal
deleted
inserted
replaced
|
1 // Copyright (c) 2005-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 // Registry info for Reference Connection Provider plug-in |
|
15 // |
|
16 // |
|
17 |
|
18 /** |
|
19 @file 102738D0.RSS |
|
20 */ |
|
21 |
|
22 #include <ecom/registryinfo.rh> |
|
23 |
|
24 /** |
|
25 * Description: |
|
26 * [1] dll_uid should be the same as the name of this file. It stands for the UID of |
|
27 * this ECOM plugin. In order to obtain a new UID, register at the |
|
28 * "EPOC UID Allocation Database". Each plugin needs a array of UIDs: |
|
29 * - one for the dll |
|
30 * - one for the Connection Factory implementation id. |
|
31 * The UIDs listed in this file are either interface UIDs or implementation |
|
32 * UIDs registered for this particular plug-in. The latter should be replaced |
|
33 * for each new plug-in. |
|
34 * [2] interface_uid is the ECOM plugin intergface id. In this file: |
|
35 * 0x102738D1 - Connection Provider Factory interface id. |
|
36 * |
|
37 */ |
|
38 |
|
39 |
|
40 RESOURCE REGISTRY_INFO theInfo |
|
41 { |
|
42 dll_uid = 0x102738D0; |
|
43 interfaces = |
|
44 { |
|
45 INTERFACE_INFO |
|
46 { |
|
47 interface_uid = 0x102070EE; |
|
48 implementations = |
|
49 { |
|
50 IMPLEMENTATION_INFO |
|
51 { |
|
52 implementation_uid = 0x102738D1; |
|
53 version_no = 1; |
|
54 display_name = "Reference Connection Provider Factory"; |
|
55 default_data = "ReferenceConnectionProviderFactory"; |
|
56 opaque_data = ""; |
|
57 } |
|
58 }; |
|
59 } |
|
60 }; |
|
61 } |