messagingappbase/obexmtms/btmtm/btserver/group/btmtm.rss
changeset 80 8b14b30db193
parent 0 72b543305e3a
equal deleted inserted replaced
79:2981cb3aa489 80:8b14b30db193
       
     1 // Copyright (c) 2000-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 <mtmconfig.rh>
       
    17 
       
    18 //Standard RSS file for MTM registration.
       
    19 //Must be copied to \system\MTM folder to be registered
       
    20 
       
    21 RESOURCE MTM_INFO_FILE
       
    22 	{
       
    23 	mtm_type_uid = 0x10009ED5;							//=KUidMsgTypeBt
       
    24 	technology_type_uid = 0x10009ED6;					//=KUidBtTechnologyGroup
       
    25 	components = 
       
    26 		{
       
    27 		MTM_COMPONENT_V2
       
    28 			{
       
    29 			human_readable_name = "Bluetooth server MTM";
       
    30 			component_uid = 0x10003C5E;					//=KUidMtmServerComponent
       
    31 			entry_point = 1;
       
    32 			version = VERSION_V2 {};
       
    33 			filename = "z:\\system\\libs\\btsmtm.dll";
       
    34 			},
       
    35 		MTM_COMPONENT_V2
       
    36 			{
       
    37 			human_readable_name = "Bluetooth client MTM";
       
    38 			component_uid = 0x10003C5F;					//=KUidMtmClientComponent
       
    39 			entry_point = 1;
       
    40 			version = VERSION_V2 {};
       
    41 			filename = "z:\\system\\libs\\btcmtm.dll";
       
    42 			}
       
    43 		};
       
    44 	}
       
    45 
       
    46 
       
    47 RESOURCE MTM_CAPABILITIES
       
    48 	{
       
    49 	send_capability=1;
       
    50 	}
       
    51 	
       
    52 RESOURCE MTM_SECURITY_CAPABILITY_SET
       
    53 	{
       
    54 	capabilities = { ECapabilityLocalServices };
       
    55 	}
       
    56