usbmgmt/usbmgr/group/usb.iby
changeset 0 c9bc50fca66e
child 8 96e575696901
equal deleted inserted replaced
-1:000000000000 0:c9bc50fca66e
       
     1 /*
       
     2 * Copyright (c) 2003-2009 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:
       
    15 * Comms Server
       
    16 *
       
    17 */
       
    18 
       
    19 #ifndef __USB_IBY__
       
    20 #define __USB_IBY__
       
    21 
       
    22 REM *** usbman.iby is always included whether USB is supported by the
       
    23 REM *** device or not.
       
    24 
       
    25 REM change to usbmanProto.iby for prototype builds
       
    26 #include <usbman.iby> // USB_DIR is defined in usbman.iby
       
    27 
       
    28 REM *** Now for things which should only be included if the device
       
    29 REM *** supports USB, to save ROM space...
       
    30 
       
    31 #if defined(SYMBIAN_EXCLUDE_USB) || !defined(EUSBC)
       
    32 REM Feature USB is not included in this ROM (usb.iby)
       
    33 #else
       
    34 
       
    35 file=ABI_DIR\USB_DIR\ecacm.csy	Ecacm.csy
       
    36 
       
    37 REM *** 'buildrom -D__TEST_USB_ZLP__' will use the ZLP version of the ini file.
       
    38 REM *** Note that this is a test configuration only.
       
    39 #ifndef __TEST_USB_ZLP__
       
    40 	data=ZSYSTEM\data\ecacm.ini	System\Data\ecacm.ini
       
    41 #else //__TEST_USB_ZLP__
       
    42 	data=ZSYSTEM\data\ecacm_for_usb_zlp_testing.ini	System\Data\ecacm.ini
       
    43 #endif //__TEST_USB_ZLP__
       
    44 
       
    45 #endif // SYMBIAN_EXCLUDE_USB
       
    46 
       
    47 #endif