Update contrib.
1 // Copyright (c) 2008-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 the License "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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Shared client/server definitions
16 // WARNING: This file contains some APIs which are internal and are subject
17 // to change without notice. Such APIs should therefore not be used
18 // outside the Kernel and Hardware Services package.
26 #ifndef __HOSTUSBMSSHARED_H__
27 #define __HOSTUSBMSSHARED_H__
29 const TUint32 KMaxUsbSerialNumLength=256;
32 This class represents the device configuration.
34 class THostMassStorageConfig
38 TUint32 iInterfaceToken;
43 /** USB Device Release Number in BCD */
45 /** USB Number of possible configurations supported by the device */
46 TUint8 iConfigurationNumber;
47 /** USB Interface number */
48 TUint8 iInterfaceNumber;
49 /** Device Serial Number */
50 TBuf8<KMaxUsbSerialNumLength> iSerialNumber;
51 /** Protocol to be used by the MSC */
53 /** Transport to be used by the MSC */
55 /** Time internval to check media status and finalisation */
56 TUint8 iStatusPollingInterval;
57 /** Device's capabilitiy for RemoteWakeup */
59 /** OTG capability of the device */
60 TUint8 iIsOtgClient; // NOT USED
61 /** Time interval to delay suspending the interface after finalisation */
62 TUint8 iOtgSuspendTime; // NOT USED
74 /** Size of Media in Blocks */
75 TUint32 iNumberOfBlocks;
78 /** Media write protect */
84 #endif //__HOSTUSBMSSHARED_H__