bluetoothcommsprofiles/btpan/group/btpan.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 __BTPAN_IBY__
       
    17 #define __BTPAN_IBY__
       
    18 
       
    19 // If __BT_DEBUG__ is defined pull in debug versions of the
       
    20 // PAN Profile DLLs regardless of the ROM type
       
    21 #ifdef __BT_DEBUG__
       
    22 define BT_DIR UDEB
       
    23 #else
       
    24 define BT_DIR BUILD_DIR
       
    25 #endif
       
    26 
       
    27 REM *** commsdebugutility.iby is always included, whether bluetooth is
       
    28 REM *** supported by the device or not.
       
    29 
       
    30 #if defined(_DEBUG) || defined (__BT_DEBUG__)
       
    31 #include <commsdebugutility.iby>
       
    32 #endif
       
    33 
       
    34 REM *** Now for things which should only be included if the device
       
    35 REM *** supports bluetooth, to save ROM space...
       
    36 
       
    37 #ifdef SYMBIAN_EXCLUDE_BLUETOOTH
       
    38 REM Feature BLUETOOTH is not in this ROM (btpan.iby)
       
    39 
       
    40 #else
       
    41 // !SYMBIAN_EXCLUDE_BLUETOOTH
       
    42 
       
    43 file=ABI_DIR\BT_DIR\panagt.agt		System\Libs\panagt.agt
       
    44 file=ABI_DIR\BT_DIR\panhelper.dll		System\Libs\panhelper.dll
       
    45 file=ABI_DIR\BT_DIR\bnep.drv			System\Libs\bnep.drv
       
    46 
       
    47 #ifdef SYMBIAN_NON_SEAMLESS_NETWORK_BEARER_MOBILITY
       
    48 file=ABI_DIR\BT_DIR\panmessages.dll     System\Libs\panmessages.dll
       
    49 BT_PLUGIN(panproviders.dll,panproviders.rsc)
       
    50 #endif
       
    51 
       
    52 #endif
       
    53 // SYMBIAN_EXCLUDE_BLUETOOTH
       
    54 
       
    55 #endif
       
    56 // __BTPAN_IBY__