44
|
1 |
/*
|
|
2 |
* Copyright (c) 2009 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: Implementation of dm adapters
|
|
15 |
* This is part of omadmextensions.
|
|
16 |
*
|
|
17 |
*/
|
|
18 |
|
|
19 |
|
|
20 |
CHARACTER_SET UTF8
|
|
21 |
|
|
22 |
/*
|
|
23 |
* ============================================================================
|
|
24 |
* Name : 101f6e36.rss
|
|
25 |
* Part of : SyncMl
|
|
26 |
* Interface: ecom / SmlDmAdapter
|
|
27 |
* Origin : SyncML Phase 2
|
|
28 |
* Created : 06.03.2003
|
|
29 |
* Implementation notes:
|
|
30 |
*
|
|
31 |
* Version : 0.1
|
|
32 |
* $Revision: 4 $, $Modtime: 6.06.05 10:28 $
|
|
33 |
* ---------------------------------------------------------------------------
|
|
34 |
* Version history:
|
|
35 |
* Template version: 1.02, 21.6.2000 by maparnan
|
|
36 |
* <ccm_history>
|
|
37 |
* </ccm_history>
|
|
38 |
* ============================================================================
|
|
39 |
*/
|
|
40 |
|
|
41 |
|
|
42 |
|
|
43 |
#include <registryinfo.rh>
|
|
44 |
#include "nsmldmconstants.h"
|
|
45 |
|
|
46 |
RESOURCE REGISTRY_INFO theRegistryInfo
|
|
47 |
{
|
|
48 |
dll_uid = 0x101F6E36; //The DLL's 3rd UID.
|
|
49 |
interfaces =
|
|
50 |
{
|
|
51 |
INTERFACE_INFO
|
|
52 |
{
|
|
53 |
interface_uid = KNSmlDMInterfaceUid; // DM interface UID
|
|
54 |
implementations =
|
|
55 |
{
|
|
56 |
IMPLEMENTATION_INFO
|
|
57 |
{
|
|
58 |
implementation_uid = 0x101F6E37; // DM MMS implementation UID
|
|
59 |
version_no = 1;
|
|
60 |
display_name = "";
|
|
61 |
default_data = "";
|
|
62 |
opaque_data = "";
|
|
63 |
}
|
|
64 |
};
|
|
65 |
}
|
|
66 |
};
|
|
67 |
}
|
|
68 |
|
|
69 |
// End of File
|