1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/kernelhwsrv/kernel/eka/include/d32usbdescriptors.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,548 @@
1.4 +// Copyright (c) 2007-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 +//
1.18 +
1.19 +#ifndef D32USBDESCRIPTORS_H
1.20 +#define D32USBDESCRIPTORS_H
1.21 +
1.22 +#include <e32base.h>
1.23 +
1.24 +
1.25 +/*****************************************************************************/
1.26 +/* */
1.27 +/* USB descriptors parser framework */
1.28 +/* */
1.29 +/*****************************************************************************/
1.30 +
1.31 +class TUsbGenericDescriptor;
1.32 +
1.33 +/**
1.34 +The Symbian USB Descriptor Parsing Framework class.
1.35 +
1.36 +This class is to aid users of USBDI by providing the facilities to parse the
1.37 +raw descriptor data into wrapper classes that allow access to the fields in
1.38 +the descriptor bodies, and pointers to map the serial data blob into the tree
1.39 +structure that descriptors logically have.
1.40 +
1.41 +@publishedPartner Intended to be available to 3rd parties later
1.42 +@prototype
1.43 +*/
1.44 +NONSHARABLE_CLASS(UsbDescriptorParser)
1.45 + {
1.46 +public:
1.47 + typedef TUsbGenericDescriptor* (*TUsbDescriptorParserL)(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
1.48 +
1.49 +public:
1.50 + // Main parse function.
1.51 + IMPORT_C static TInt Parse(const TDesC8& aUsbDes, TUsbGenericDescriptor*& aDesc);
1.52 +
1.53 + // Custom parsing framework.
1.54 + IMPORT_C static void RegisterCustomParserL(TUsbDescriptorParserL aParserFunc);
1.55 + IMPORT_C static void UnregisterCustomParser(TUsbDescriptorParserL aParserFunc);
1.56 +
1.57 +private:
1.58 + static TUsbGenericDescriptor* FindParserAndParseAndCheckL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
1.59 + static TUsbGenericDescriptor* FindParserAndParseL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
1.60 + static void ParseDescriptorTreeL(TPtrC8& aUsbDes, TUsbGenericDescriptor& aPreviousDesc);
1.61 + static void BuildTreeL(TUsbGenericDescriptor& aNewDesc, TUsbGenericDescriptor& aPreviousDesc);
1.62 + static TUsbGenericDescriptor& FindSuitableParentL(TUsbGenericDescriptor& aNewDesc, TUsbGenericDescriptor& aTopParent);
1.63 + static TUsbGenericDescriptor* UnknownUsbDescriptorParserL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
1.64 + };
1.65 +
1.66 +
1.67 +/*****************************************************************************/
1.68 +/* */
1.69 +/* USB standard descriptors */
1.70 +/* */
1.71 +/*****************************************************************************/
1.72 +
1.73 +
1.74 +/**
1.75 +Base class for USB descriptors.
1.76 +All USB descriptors contain type and length, and may have peers and children.
1.77 +
1.78 +@publishedPartner Intended to be available to 3rd parties later
1.79 +@prototype
1.80 +*/
1.81 +class TUsbGenericDescriptor
1.82 + {
1.83 +public:
1.84 + IMPORT_C TUsbGenericDescriptor();
1.85 +
1.86 + IMPORT_C void DestroyTree();
1.87 +
1.88 + IMPORT_C TUint8 TUint8At(TInt aOffset) const;
1.89 + IMPORT_C TUint16 TUint16At(TInt aOffset) const;
1.90 + IMPORT_C TUint32 TUint32At(TInt aOffset) const;
1.91 +
1.92 + IMPORT_C TUsbGenericDescriptor& operator=(const TUsbGenericDescriptor& aDescriptor);
1.93 +
1.94 + /**
1.95 + Helper function to allow TUsbGenericDescriptor types to be placed on the cleanup stack.
1.96 + */
1.97 + inline operator TCleanupItem() { return TCleanupItem(Cleanup,this); }
1.98 +
1.99 +public:
1.100 + virtual TBool IsParent(TUsbGenericDescriptor& aPotentialParent);
1.101 + virtual TBool IsPeer(TUsbGenericDescriptor& aPotentialPeer);
1.102 + virtual TBool IsChild(TUsbGenericDescriptor& aPotentialChild);
1.103 +
1.104 +private:
1.105 + IMPORT_C static void Cleanup(TAny* aPtr);
1.106 + static void WalkAndDelete(TUsbGenericDescriptor* aDesc);
1.107 +
1.108 +public: // USB standard fields
1.109 + /**
1.110 + The offset in a standard USB descriptor to the bLength field.
1.111 + */
1.112 + static const TInt KbLengthOffset = 0;
1.113 +
1.114 + /**
1.115 + The offset in a standard USB descriptor to the bDescriptorType field.
1.116 + */
1.117 + static const TInt KbDescriptorTypeOffset = 1;
1.118 +
1.119 + /**
1.120 + Standard Length field.
1.121 + */
1.122 + TUint8 ibLength;
1.123 +
1.124 + /**
1.125 + Standard Type field.
1.126 + */
1.127 + TUint8 ibDescriptorType;
1.128 +
1.129 +public:
1.130 + /**
1.131 + The flag to indicate whether the USB descriptor has been recognised
1.132 + and parsed.
1.133 + */
1.134 + enum TUsbGenericDescriptorFlags
1.135 + {
1.136 + EUnrecognised = 0x00,
1.137 + ERecognised = 0x01,
1.138 + };
1.139 +
1.140 +public: // Symbian generated fields
1.141 + /**
1.142 + Flag to show if the descriptor has been recognised and parsed, or if its data can only be represented as a
1.143 + binary blob. This field should particularly be checked if writing code which may run on older versions of
1.144 + the operating system, where a (now) known descriptor may not have been parsed, or before parsing a new
1.145 + descriptor from a blob, where later versions of the operating system may have already extracted the fields.
1.146 + */
1.147 + TUint8 iRecognisedAndParsed;
1.148 +
1.149 + /**
1.150 + A pointer to the next peer of this descriptor, or NULL.
1.151 + As an example, an endpoint descriptor will contain pointers to any other endpoint descriptors on the same
1.152 + interface.
1.153 + */
1.154 + TUsbGenericDescriptor* iNextPeer;
1.155 +
1.156 + /**
1.157 + A pointer to the first child of this descriptor, or NULL.
1.158 + As an example, an interface descriptor will contain a pointer to the first endpoint descriptor on the
1.159 + interface. The iNextPeer member can then be used to examine other endpoints on the interface.
1.160 + */
1.161 + TUsbGenericDescriptor* iFirstChild;
1.162 +
1.163 + /**
1.164 + A pointer to the parent to this descriptor, or NULL.
1.165 + As an example an endpoint descriptor from a configuration bundle will have the interface that it
1.166 + is a member of as it's parent.
1.167 + */
1.168 + TUsbGenericDescriptor* iParent;
1.169 +
1.170 + /**
1.171 + The binary blob that contains this descriptor
1.172 + */
1.173 + TPtrC8 iBlob;
1.174 + };
1.175 +
1.176 +enum TUsbDescriptorType
1.177 + {
1.178 + EDevice = 1,
1.179 + EConfiguration = 2,
1.180 + EString = 3,
1.181 + EInterface = 4,
1.182 + EEndpoint = 5,
1.183 + EDeviceQualifier = 6,
1.184 + EOtherSpeedConfiguration = 7,
1.185 + EInterfacePower = 8,
1.186 + EOTG = 9,
1.187 + EDebug = 10,
1.188 + EInterfaceAssociation = 11,
1.189 + };
1.190 +
1.191 +/**
1.192 +Device descriptor.
1.193 +
1.194 +See section 9.6.1 of the USB 2.0 specification.
1.195 +
1.196 +@publishedPartner Intended to be available to 3rd parties later
1.197 +@prototype
1.198 +*/
1.199 +NONSHARABLE_CLASS(TUsbDeviceDescriptor) : public TUsbGenericDescriptor
1.200 + {
1.201 +public:
1.202 + IMPORT_C TUsbDeviceDescriptor();
1.203 + IMPORT_C static TUsbDeviceDescriptor* Cast(TUsbGenericDescriptor* aOriginal);
1.204 +
1.205 +public:
1.206 + static const TInt KSizeInOctets = 18;
1.207 + enum TFieldOffsets
1.208 + {
1.209 + EbcdUSB = 2,
1.210 + EbDeviceClass = 4,
1.211 + EbDeviceSubClass = 5,
1.212 + EbDeviceProtocol = 6,
1.213 + EbMaxPacketSize0 = 7,
1.214 + EidVendor = 8,
1.215 + EidProduct = 10,
1.216 + EbcdDevice = 12,
1.217 + EiManufacturer = 14,
1.218 + EiProduct = 15,
1.219 + EiSerialNumber = 16,
1.220 + EbNumConfigurations = 17
1.221 + };
1.222 +
1.223 +public:
1.224 + IMPORT_C TUint16 USBBcd() const;
1.225 + IMPORT_C TUint8 DeviceClass() const;
1.226 + IMPORT_C TUint8 DeviceSubClass() const;
1.227 + IMPORT_C TUint8 DeviceProtocol() const;
1.228 + IMPORT_C TUint8 MaxPacketSize0() const;
1.229 + IMPORT_C TUint16 VendorId() const;
1.230 + IMPORT_C TUint16 ProductId() const;
1.231 + IMPORT_C TUint16 DeviceBcd() const;
1.232 + IMPORT_C TUint8 ManufacturerIndex() const;
1.233 + IMPORT_C TUint8 ProductIndex() const;
1.234 + IMPORT_C TUint8 SerialNumberIndex() const;
1.235 + IMPORT_C TUint8 NumConfigurations() const;
1.236 +
1.237 +public:
1.238 + static TUsbDeviceDescriptor* ParseL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
1.239 + virtual TBool IsParent(TUsbGenericDescriptor& aPotentialParent);
1.240 + virtual TBool IsPeer(TUsbGenericDescriptor& aPotentialPeer);
1.241 + };
1.242 +
1.243 +
1.244 +/**
1.245 +Device Qualifier descriptor.
1.246 +
1.247 +See section 9.6.2 of the USB 2.0 specification.
1.248 +
1.249 +@publishedPartner Intended to be available to 3rd parties later
1.250 +@prototype
1.251 +*/
1.252 +NONSHARABLE_CLASS(TUsbDeviceQualifierDescriptor) : public TUsbGenericDescriptor
1.253 + {
1.254 +public:
1.255 + IMPORT_C TUsbDeviceQualifierDescriptor();
1.256 + IMPORT_C static TUsbDeviceQualifierDescriptor* Cast(TUsbGenericDescriptor* aOriginal);
1.257 +
1.258 +public:
1.259 + static const TInt KSizeInOctets = 10;
1.260 + enum TFieldOffsets
1.261 + {
1.262 + EbcdUSB = 2,
1.263 + EbDeviceClass = 4,
1.264 + EbDeviceSubClass = 5,
1.265 + EbDeviceProtocol = 6,
1.266 + EbMaxPacketSize0 = 7,
1.267 + EbNumConfigurations = 8,
1.268 + EbReserved = 9
1.269 + };
1.270 +
1.271 +public:
1.272 + IMPORT_C TUint16 USBBcd() const;
1.273 + IMPORT_C TUint8 DeviceClass() const;
1.274 + IMPORT_C TUint8 DeviceSubClass() const;
1.275 + IMPORT_C TUint8 DeviceProtocol() const;
1.276 + IMPORT_C TUint8 MaxPacketSize0() const;
1.277 + IMPORT_C TUint8 NumConfigurations() const;
1.278 + IMPORT_C TUint8 Reserved() const;
1.279 +
1.280 +public:
1.281 + static TUsbDeviceQualifierDescriptor* ParseL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
1.282 + virtual TBool IsParent(TUsbGenericDescriptor& aPotentialParent);
1.283 + virtual TBool IsPeer(TUsbGenericDescriptor& aPotentialPeer);
1.284 + };
1.285 +
1.286 +
1.287 +/**
1.288 +Configuration descriptor.
1.289 +
1.290 +See section 9.6.3 of the USB 2.0 specification.
1.291 +
1.292 +@publishedPartner Intended to be available to 3rd parties later
1.293 +@prototype
1.294 +*/
1.295 +NONSHARABLE_CLASS(TUsbConfigurationDescriptor) : public TUsbGenericDescriptor
1.296 + {
1.297 +public:
1.298 + IMPORT_C TUsbConfigurationDescriptor();
1.299 + IMPORT_C static TUsbConfigurationDescriptor* Cast(TUsbGenericDescriptor* aOriginal);
1.300 +
1.301 +public:
1.302 + static const TInt KSizeInOctets = 9;
1.303 + enum TFieldOffsets
1.304 + {
1.305 + EwTotalLength = 2,
1.306 + EbNumInterfaces = 4,
1.307 + EbConfigurationValue = 5,
1.308 + EiConfiguration = 6,
1.309 + EbmAttributes = 7,
1.310 + EbMaxPower = 8
1.311 + };
1.312 +
1.313 +public:
1.314 + IMPORT_C TUint16 TotalLength() const;
1.315 + IMPORT_C TUint8 NumInterfaces() const;
1.316 + IMPORT_C TUint8 ConfigurationValue() const;
1.317 + IMPORT_C TUint8 ConfigurationIndex() const;
1.318 + IMPORT_C TUint8 Attributes() const;
1.319 + IMPORT_C TUint8 MaxPower() const;
1.320 +
1.321 +public:
1.322 + static TUsbConfigurationDescriptor* ParseL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
1.323 + virtual TBool IsParent(TUsbGenericDescriptor& aPotentialParent);
1.324 + virtual TBool IsPeer(TUsbGenericDescriptor& aPotentialPeer);
1.325 + };
1.326 +
1.327 +
1.328 +/**
1.329 +Other Speed descriptor.
1.330 +
1.331 +See section 9.6.4 of the USB 2.0 specification.
1.332 +
1.333 +@publishedPartner Intended to be available to 3rd parties later
1.334 +@prototype
1.335 +*/
1.336 +NONSHARABLE_CLASS(TUsbOtherSpeedDescriptor) : public TUsbGenericDescriptor
1.337 + {
1.338 +public:
1.339 + IMPORT_C TUsbOtherSpeedDescriptor();
1.340 + IMPORT_C static TUsbOtherSpeedDescriptor* Cast(TUsbGenericDescriptor* aOriginal);
1.341 +
1.342 +public:
1.343 + static const TInt KSizeInOctets = 9;
1.344 + enum TFieldOffsets
1.345 + {
1.346 + EwTotalLength = 2,
1.347 + EbNumInterfaces = 4,
1.348 + EbConfigurationValue = 5,
1.349 + EiConfiguration = 6,
1.350 + EbmAttributes = 7,
1.351 + EbMaxPower = 8
1.352 + };
1.353 +
1.354 +public:
1.355 + IMPORT_C TUint16 TotalLength() const;
1.356 + IMPORT_C TUint8 NumInterfaces() const;
1.357 + IMPORT_C TUint8 ConfigurationValue() const;
1.358 + IMPORT_C TUint8 ConfigurationIndex() const;
1.359 + IMPORT_C TUint8 Attributes() const;
1.360 + IMPORT_C TUint8 MaxPower() const;
1.361 +
1.362 +public:
1.363 + static TUsbOtherSpeedDescriptor* ParseL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
1.364 + virtual TBool IsParent(TUsbGenericDescriptor& aPotentialParent);
1.365 + virtual TBool IsPeer(TUsbGenericDescriptor& aPotentialPeer);
1.366 + };
1.367 +
1.368 +
1.369 +/**
1.370 +Interface Association Descriptor
1.371 +
1.372 +See the USB IAD ECN.
1.373 +
1.374 +@publishedPartner Intended to be available to 3rd parties later
1.375 +@prototype
1.376 +*/
1.377 +NONSHARABLE_CLASS(TUsbInterfaceAssociationDescriptor) : public TUsbGenericDescriptor
1.378 + {
1.379 +public:
1.380 + IMPORT_C TUsbInterfaceAssociationDescriptor();
1.381 + IMPORT_C static TUsbInterfaceAssociationDescriptor* Cast(TUsbGenericDescriptor* aOriginal);
1.382 +
1.383 +public:
1.384 + static const TInt KSizeInOctets = 8;
1.385 + enum TFieldOffsets
1.386 + {
1.387 + EbFirstInterface = 2,
1.388 + EbInterfaceCount = 3,
1.389 + EbFunctionClass = 4,
1.390 + EbFunctionSubClass = 5,
1.391 + EbFunctionProtocol = 6,
1.392 + EiFunction = 7
1.393 + };
1.394 +
1.395 +public:
1.396 + IMPORT_C TUint8 FirstInterface() const;
1.397 + IMPORT_C TUint8 InterfaceCount() const;
1.398 + IMPORT_C TUint8 FunctionClass() const;
1.399 + IMPORT_C TUint8 FunctionSubClass() const;
1.400 + IMPORT_C TUint8 FunctionProtocol() const;
1.401 + IMPORT_C TUint8 FunctionIndex() const;
1.402 +
1.403 +public:
1.404 + static TUsbInterfaceAssociationDescriptor* ParseL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
1.405 + virtual TBool IsParent(TUsbGenericDescriptor& aPotentialParent);
1.406 + virtual TBool IsPeer(TUsbGenericDescriptor& aPotentialPeer);
1.407 + virtual TBool IsChild(TUsbGenericDescriptor& aPotentialChild);
1.408 + };
1.409 +
1.410 +/**
1.411 +Interface descriptor.
1.412 +
1.413 +See section 9.6.5 of the USB 2.0 specification.
1.414 +
1.415 +@publishedPartner Intended to be available to 3rd parties later
1.416 +@prototype
1.417 +*/
1.418 +NONSHARABLE_CLASS(TUsbInterfaceDescriptor) : public TUsbGenericDescriptor
1.419 + {
1.420 +public:
1.421 + IMPORT_C TUsbInterfaceDescriptor();
1.422 + IMPORT_C static TUsbInterfaceDescriptor* Cast(TUsbGenericDescriptor* aOriginal);
1.423 +
1.424 +public:
1.425 + static const TInt KSizeInOctets = 9;
1.426 + enum TFieldOffsets
1.427 + {
1.428 + EbInterfaceNumber = 2,
1.429 + EbAlternateSetting = 3,
1.430 + EbNumEndpoints = 4,
1.431 + EbInterfaceClass = 5,
1.432 + EbInterfaceSubClass = 6,
1.433 + EbInterfaceProtocol = 7,
1.434 + EiInterface = 8
1.435 + };
1.436 +
1.437 +public:
1.438 + IMPORT_C TUint8 InterfaceNumber() const;
1.439 + IMPORT_C TUint8 AlternateSetting() const;
1.440 + IMPORT_C TUint8 NumEndpoints() const;
1.441 + IMPORT_C TUint8 InterfaceClass() const;
1.442 + IMPORT_C TUint8 InterfaceSubClass() const;
1.443 + IMPORT_C TUint8 InterfaceProtocol() const;
1.444 + IMPORT_C TUint8 Interface() const;
1.445 +
1.446 +public:
1.447 + static TUsbInterfaceDescriptor* ParseL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
1.448 + virtual TBool IsParent(TUsbGenericDescriptor& aPotentialParent);
1.449 + virtual TBool IsPeer(TUsbGenericDescriptor& aPotentialPeer);
1.450 + };
1.451 +
1.452 +/**
1.453 +Endpoint descriptor.
1.454 +
1.455 +See section 9.6.6 of the USB 2.0 specification.
1.456 +Note these exclude support support for:
1.457 +'Standard AC Interrupt Endpoint Descriptor'
1.458 +'Standard AS Isochronous Synch Endpoint Descriptor'
1.459 +'Standard AS Isochronous Audio Data Endpoint Descriptor'
1.460 +as defined in USB Audio Device Class Spec v1.0 which are all 9 bytes in size.
1.461 +To support these custom descriptors may be registered with the
1.462 +parser.
1.463 +
1.464 +@publishedPartner Intended to be available to 3rd parties later
1.465 +@prototype
1.466 +*/
1.467 +NONSHARABLE_CLASS(TUsbEndpointDescriptor) : public TUsbGenericDescriptor
1.468 + {
1.469 +public:
1.470 + IMPORT_C TUsbEndpointDescriptor();
1.471 + IMPORT_C static TUsbEndpointDescriptor* Cast(TUsbGenericDescriptor* aOriginal);
1.472 +
1.473 +public:
1.474 + static const TInt KSizeInOctets = 7;
1.475 + enum TFieldOffsets
1.476 + {
1.477 + EbEndpointAddress = 2,
1.478 + EbmAttributes = 3,
1.479 + EwMaxPacketSize = 4,
1.480 + EbInterval = 6
1.481 + };
1.482 +
1.483 +public:
1.484 + IMPORT_C TUint8 EndpointAddress() const;
1.485 + IMPORT_C TUint8 Attributes() const;
1.486 + IMPORT_C TUint16 MaxPacketSize() const;
1.487 + IMPORT_C TUint8 Interval() const;
1.488 +
1.489 +public:
1.490 + static TUsbEndpointDescriptor* ParseL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
1.491 + virtual TBool IsParent(TUsbGenericDescriptor& aPotentialParent);
1.492 + virtual TBool IsPeer(TUsbGenericDescriptor& aPotentialPeer);
1.493 + };
1.494 +
1.495 +/**
1.496 +String descriptor
1.497 +
1.498 +See section 9.6.7 of the USB 2.0 specification.
1.499 +
1.500 +@publishedPartner Intended to be available to 3rd parties later
1.501 +@prototype
1.502 +*/
1.503 +NONSHARABLE_CLASS(TUsbStringDescriptor) : public TUsbGenericDescriptor
1.504 + {
1.505 +public:
1.506 + IMPORT_C TUsbStringDescriptor();
1.507 + IMPORT_C static TUsbStringDescriptor* Cast(TUsbGenericDescriptor* aOriginal);
1.508 +
1.509 +public:
1.510 + IMPORT_C TInt GetLangId(TInt aIndex) const;
1.511 + IMPORT_C void StringData(TDes16& aString) const;
1.512 +
1.513 +public:
1.514 + static TUsbStringDescriptor* ParseL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
1.515 + virtual TBool IsParent(TUsbGenericDescriptor& aPotentialParent);
1.516 + virtual TBool IsPeer(TUsbGenericDescriptor& aPotentialPeer);
1.517 + };
1.518 +
1.519 +/**
1.520 +OTG descriptor.
1.521 +
1.522 +See section 6.4 of the USB 2.0 On-The-Go Supplement Revision 1.3
1.523 +
1.524 +@publishedPartner Intended to be available to 3rd parties later
1.525 +@prototype
1.526 +*/
1.527 +NONSHARABLE_CLASS(TUsbOTGDescriptor) : public TUsbGenericDescriptor
1.528 + {
1.529 +public:
1.530 + IMPORT_C TUsbOTGDescriptor();
1.531 + IMPORT_C static TUsbOTGDescriptor* Cast(TUsbGenericDescriptor* aOriginal);
1.532 +
1.533 +public:
1.534 + static const TInt KSizeInOctets = 3;
1.535 + enum TFieldOffsets
1.536 + {
1.537 + EbmAttributes = 2
1.538 + };
1.539 +
1.540 +public:
1.541 + IMPORT_C TUint8 Attributes() const;
1.542 + IMPORT_C TBool HNPSupported() const;
1.543 + IMPORT_C TBool SRPSupported() const;
1.544 +public:
1.545 + static TUsbOTGDescriptor* ParseL(TPtrC8& aUsbDes, TUsbGenericDescriptor* aPreviousDesc);
1.546 + virtual TBool IsParent(TUsbGenericDescriptor& aPotentialParent);
1.547 + virtual TBool IsPeer(TUsbGenericDescriptor& aPotentialPeer);
1.548 + };
1.549 +
1.550 +
1.551 +#endif // D32USBDESCRIPTORS_H