equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002-2004 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: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 // RESOURCE IDENTIFIER |
|
22 |
|
23 // INCLUDES |
|
24 #include <mmf/plugin/mmfplugininterfaceuids.hrh> |
|
25 #include <ecom/registryinfo.rh> |
|
26 #include "mccuids.hrh" |
|
27 |
|
28 // CONSTANTS |
|
29 // MACROS |
|
30 |
|
31 // RESOURCE DEFINITIONS |
|
32 // ----------------------------------------------------------------------------- |
|
33 // |
|
34 // RtpSourceSink |
|
35 // |
|
36 // |
|
37 // ----------------------------------------------------------------------------- |
|
38 // |
|
39 RESOURCE REGISTRY_INFO theInfo |
|
40 { |
|
41 dll_uid = KDllUidRtpSourceSink; |
|
42 interfaces = |
|
43 { |
|
44 INTERFACE_INFO |
|
45 { |
|
46 interface_uid = KMmfUidPluginInterfaceDataSource; // MdataSource |
|
47 implementations = |
|
48 { |
|
49 IMPLEMENTATION_INFO |
|
50 { |
|
51 implementation_uid = KImplUidRtpDataSource; |
|
52 version_no = KIpappsrvEcomVersionNumber; |
|
53 display_name = "RTP Data Source"; |
|
54 default_data = ""; |
|
55 opaque_data = ""; |
|
56 } |
|
57 }; |
|
58 } , |
|
59 INTERFACE_INFO |
|
60 { |
|
61 interface_uid = KMmfUidPluginInterfaceDataSink; // MdataSink |
|
62 implementations = |
|
63 { |
|
64 IMPLEMENTATION_INFO |
|
65 { |
|
66 implementation_uid = KImplUidRtpDataSink; |
|
67 version_no = KIpappsrvEcomVersionNumber; |
|
68 display_name = "RTP Data Sink"; |
|
69 default_data = ""; |
|
70 opaque_data = ""; |
|
71 } |
|
72 }; |
|
73 } |
|
74 |
|
75 }; |
|
76 } |
|
77 |
|
78 // End of File |
|
79 |
|
80 |