Update contrib.
1 // Copyright (c) 2007-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.
28 const TUint32 KFunctionDriverFrameworkSid = 0x10282B48;
31 Logical Device (factory class) for USB Hub Driver
33 class DUsbHubDriverFactory : public DLogicalDevice
36 DUsbHubDriverFactory();
37 ~DUsbHubDriverFactory();
39 // Inherited from DLogicalDevice
40 virtual TInt Install();
41 virtual void GetCaps(TDes8& aDes) const;
42 virtual TInt Create(DLogicalChannelBase*& aChannel);
47 class DUsbHubDriverChannel : public DLogicalChannel
50 DUsbHubDriverChannel();
51 virtual ~DUsbHubDriverChannel();
52 virtual TInt SendMsg(TMessageBase* aMsg);
58 ERequestAlreadyPending = 1
61 // Inherited from DObject
62 virtual TInt DoCreate(TInt aUnit, const TDesC8* anInfo, const TVersion& aVer);
64 // Inherited from DLogicalChannel
65 virtual void HandleMsg(TMessageBase* aMsg);
67 // Implementation for the differnt kinds of messages sent through RBusLogicalChannel
68 TInt DoControl(TInt aFunction, TAny* a1, TAny* a2);
69 TInt DoRequest(TInt aReqNo, TRequestStatus* aStatus, TAny* a1, TAny* a2);
70 void DoCancel(TUint aMask);
71 TInt SendControl(TMessageBase* aMsg);
72 TInt SendRequest(TMessageBase* aMsg);
74 DUsbDevice* GetDeviceFromHandle(TAny* aSrc);
77 DUsbHubDriver* iHubDriver;