equal
deleted
inserted
replaced
|
1 // Copyright (c) 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". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 |
|
17 |
|
18 /** |
|
19 @file |
|
20 @internalTechnology |
|
21 */ |
|
22 |
|
23 #ifndef RUSBHOSTSESSION_H |
|
24 #define RUSBHOSTSESSION_H |
|
25 |
|
26 static const TUid KUsbHostServerUid3 = {0x10282b48}; |
|
27 |
|
28 class RUsbHostSession : public RSessionBase |
|
29 { |
|
30 public: |
|
31 IMPORT_C RUsbHostSession(); |
|
32 |
|
33 IMPORT_C TInt Connect(); |
|
34 IMPORT_C TInt Start(); |
|
35 |
|
36 private: |
|
37 TInt StartServer(); |
|
38 TVersion Version() const; |
|
39 }; |
|
40 |
|
41 |
|
42 #endif // RUSBHOSTSESSION_H |