remotecontrol/remotecontrolfw/group/remotecontrol.iby
changeset 51 20ac952a623c
equal deleted inserted replaced
48:22de2e391156 51:20ac952a623c
       
     1 // Copyright (c) 2004-2010 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 // ROM include file for Remote Control system.
       
    15 // 
       
    16 //
       
    17 
       
    18 /**
       
    19  @file
       
    20  @publishedPartner
       
    21  @released
       
    22 */
       
    23 
       
    24 #ifndef __REMCON_IBY__
       
    25 #define __REMCON_IBY__
       
    26 
       
    27 REM *** The following iby files are always included, whether bluetooth is
       
    28 REM *** supported by the device or not.
       
    29 
       
    30 #include <ecom.iby>
       
    31 
       
    32 // If __BT_DEBUG__ is defined pull in debug versions of the
       
    33 // RemCon DLLs regardless of the ROM type
       
    34 #ifdef __BT_DEBUG__
       
    35 define BT_DIR UDEB
       
    36 #else
       
    37 define BT_DIR BUILD_DIR
       
    38 #endif
       
    39 
       
    40 REM *** The following dlls are client side dlls. They are always included
       
    41 REM *** in the ROM, whether bluetooth is supported by the device or not, so
       
    42 REM *** that client applications can link against them regardless.
       
    43 
       
    44 // Client side
       
    45 file=ABI_DIR\BT_DIR\remconcoreapi.dll					System\Libs\remconcoreapi.dll
       
    46 file=ABI_DIR\BT_DIR\remconinterfacebase.dll				System\Libs\remconinterfacebase.dll
       
    47 file=ABI_DIR\BT_DIR\remconclient.dll 					System\Libs\remconclient.dll
       
    48 
       
    49 // An extension API (outer client side) supporting track name and absolute 
       
    50 // volume APIs.
       
    51 file=ABI_DIR\BT_DIR\remconextapi1.dll					System\Libs\remconextapi1.dll
       
    52 
       
    53 // DLL containing types used by more than one server-side subcomponent.
       
    54 file=ABI_DIR\BT_DIR\remcontypes.dll						System\Libs\remcontypes.dll
       
    55 
       
    56 // Server
       
    57 file=ABI_DIR\BT_DIR\remconserver.exe 					System\Programs\remconserver.exe
       
    58 
       
    59 // Base DLL for bearer plugins
       
    60 file=ABI_DIR\BT_DIR\remconbearerplugin.dll				System\Libs\remconbearerplugin.dll
       
    61 
       
    62 // Base DLL for target selector plugins
       
    63 file=ABI_DIR\BT_DIR\remcontargetselectorplugin.dll		System\Libs\remcontargetselectorplugin.dll
       
    64 
       
    65 // Base DLL for converter plugins
       
    66 file=ABI_DIR\BT_DIR\remconconverterplugin.dll			System\Libs\remconconverterplugin.dll
       
    67 
       
    68 // The concrete Target Selector Plugin.
       
    69 #include <tsp.iby>
       
    70 
       
    71 #endif // __REMCON_IBY__