bluetoothmgmt/btrom/hci.iby
changeset 0 29b1cd4cb562
child 23 5b153be919d4
equal deleted inserted replaced
-1:000000000000 0:29b1cd4cb562
       
     1 // Copyright (c) 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 #ifndef __HCI_IBY__
       
    17 #define __HCI_IBY__
       
    18 
       
    19 // If __BT_DEBUG__ is defined pull in debug versions of the
       
    20 // Bluetooth and RemCon DLLs and Plugins regardless of the ROM type
       
    21 #ifdef __BT_DEBUG__
       
    22 #define __HCI_DEBUG__
       
    23 define BT_DIR UDEB
       
    24 #define BT_PLUGIN ECOM_PLUGIN_UDEB
       
    25 #else
       
    26 define BT_DIR BUILD_DIR
       
    27 #define BT_PLUGIN ECOM_PLUGIN
       
    28 #endif
       
    29 
       
    30 #include <btlogger.iby>
       
    31 
       
    32 REM Symbian HCIv2 Framework DLLs - must be included
       
    33 #include <hci_framework.iby>
       
    34 
       
    35 REM Reference HCIv2 DLLs - this will be branched/overwritten by the licensee to include the relevant files
       
    36 #include <hci_implementation.iby>
       
    37 
       
    38 #endif // __HCI_IBY__
       
    39