1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/kernelhwsrv/userlibandfileserver/fileserver/shostmassstorage/shared/shared.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,84 @@
1.4 +// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of the License "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// Shared client/server definitions
1.18 +//
1.19 +// WARNING: This file contains some APIs which are internal and are subject
1.20 +// to change without notice. Such APIs should therefore not be used
1.21 +// outside the Kernel and Hardware Services package.
1.22 +//
1.23 +
1.24 +/**
1.25 + @file
1.26 + @internalTechnology
1.27 +*/
1.28 +
1.29 +#ifndef __HOSTUSBMSSHARED_H__
1.30 +#define __HOSTUSBMSSHARED_H__
1.31 +
1.32 +const TUint32 KMaxUsbSerialNumLength=256;
1.33 +
1.34 +/**
1.35 +This class represents the device configuration.
1.36 +*/
1.37 +class THostMassStorageConfig
1.38 + {
1.39 +public:
1.40 + /** Device token */
1.41 + TUint32 iInterfaceToken;
1.42 + /** USB Vendor ID */
1.43 + TUint16 iVendorId;
1.44 + /** USB Product ID */
1.45 + TUint16 iProductId;
1.46 + /** USB Device Release Number in BCD */
1.47 + TUint16 iBcdDevice;
1.48 + /** USB Number of possible configurations supported by the device */
1.49 + TUint8 iConfigurationNumber;
1.50 + /** USB Interface number */
1.51 + TUint8 iInterfaceNumber;
1.52 + /** Device Serial Number */
1.53 + TBuf8<KMaxUsbSerialNumLength> iSerialNumber;
1.54 + /** Protocol to be used by the MSC */
1.55 + TUint8 iProtocolId;
1.56 + /** Transport to be used by the MSC */
1.57 + TUint8 iTransportId;
1.58 + /** Time internval to check media status and finalisation */
1.59 + TUint8 iStatusPollingInterval;
1.60 + /** Device's capabilitiy for RemoteWakeup */
1.61 + TUint8 iRemoteWakeup;
1.62 + /** OTG capability of the device */
1.63 + TUint8 iIsOtgClient; // NOT USED
1.64 + /** Time interval to delay suspending the interface after finalisation */
1.65 + TUint8 iOtgSuspendTime; // NOT USED
1.66 +
1.67 +private:
1.68 + TUint32 iSpare1;
1.69 + TUint32 iSpare2;
1.70 + TUint32 iSpare3;
1.71 + TUint32 iSpare4;
1.72 + };
1.73 +
1.74 +
1.75 +struct TCapsInfo
1.76 + {
1.77 + /** Size of Media in Blocks */
1.78 + TUint32 iNumberOfBlocks;
1.79 + /** Block Length */
1.80 + TUint32 iBlockLength;
1.81 + /** Media write protect */
1.82 + TBool iWriteProtect;
1.83 + };
1.84 +
1.85 +
1.86 +
1.87 +#endif //__HOSTUSBMSSHARED_H__