srsf/ttscontrollerplugin/src/101ff933.rss
branchRCL_3
changeset 19 e36f3802f733
parent 0 bf1d17376201
equal deleted inserted replaced
18:cad71a31b7fc 19:e36f3802f733
       
     1 /*
       
     2 * Copyright (c) 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:  ECOM registration information of TTS Controller Plugin.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 //  INCLUDES
       
    20 #include <registryinfo.rh>
       
    21 #include <mmfplugininterfaceuids.hrh>
       
    22 #include "ttspluginimplementationuids.hrh"
       
    23 
       
    24 //  RESOURCE DEFINITIONS 
       
    25 // -----------------------------------------------------------------------------
       
    26 //   
       
    27 // theInfo
       
    28 // TTS Controller Plugin ECOM registration information.
       
    29 //
       
    30 // -----------------------------------------------------------------------------
       
    31 //
       
    32 
       
    33 RESOURCE REGISTRY_INFO theInfo
       
    34     {
       
    35     dll_uid = KTtsDllUidController;
       
    36     interfaces = 
       
    37         {
       
    38         INTERFACE_INFO // Information for the controller plugin
       
    39             {
       
    40             // Basic controller interface
       
    41             interface_uid = KMmfUidPluginInterfaceController;
       
    42             implementations = 
       
    43                 {
       
    44                 IMPLEMENTATION_INFO
       
    45                     {
       
    46                     implementation_uid = KTtsImplementationUid;
       
    47                     version_no = 1;
       
    48                     display_name = "TTS Controller Plugin";
       
    49                     default_data = "?";
       
    50                     opaque_data = "<s>Nokia<i>0x101F5D07<p>0x101FF935<a>0x200000";
       
    51                     // SUPPLIER = Nokia
       
    52                     // MEDIA ID = ID for TTS text 0x101F5D07 ( = audio media type )
       
    53                     // PLAY FORMATS = see KTtsInterfaceUidPlay 
       
    54                     }
       
    55                 };
       
    56             },
       
    57         INTERFACE_INFO // TTS Play format
       
    58             {
       
    59             interface_uid = KTtsPlayInterfaceUid;
       
    60             implementations =
       
    61                 {
       
    62                 IMPLEMENTATION_INFO
       
    63                     {
       
    64                     implementation_uid = KTtsPlayImplementationUid;
       
    65                     version_no = 1;
       
    66                     display_name = "TTS Controller Plugin play";
       
    67                     default_data = "?";
       
    68                     opaque_data = "<s>Nokia<i>0x101F5D07<e>.txt<h>(tts)<m>text/plain";
       
    69                     // SUPPLIER = Nokia
       
    70                     // MEDIA ID = ID for TTS text 0x101F5D07 ( = audio media type )
       
    71                     // FILE EXTENSION = .txt
       
    72                     // HEADER DATA = .tts
       
    73                     // MIME TYPE = text/plain
       
    74                     }
       
    75                 };
       
    76             }
       
    77         };
       
    78     }
       
    79 
       
    80 // End of File
       
    81 
       
    82