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 #ifndef MSMANCLIENTSERVER_H |
|
17 #define MSMANCLIENTSERVER_H |
|
18 |
|
19 /** |
|
20 USB HOST SERVER |
|
21 |
|
22 */ |
|
23 const TInt KUsbHostSrvMajorVersionNumber = 1; |
|
24 const TInt KUsbHostSrvMinorVersionNumber = 0; |
|
25 const TInt KUsbHostSrvBuildVersionNumber = 0; |
|
26 |
|
27 _LIT(KUsbHostServerName, "usbhostserver"); |
|
28 |
|
29 |
|
30 enum TUsbHostMessages |
|
31 { |
|
32 EUsbHostStart |
|
33 }; |
|
34 |
|
35 |
|
36 /** |
|
37 USB OTG SERVER |
|
38 |
|
39 */ |
|
40 const TInt KUsbOtgSrvMajorVersionNumber = 1; |
|
41 const TInt KUsbOtgSrvMinorVersionNumber = 0; |
|
42 const TInt KUsbOtgSrvBuildVersionNumber = 0; |
|
43 |
|
44 _LIT(KUsbOtgServerName, "usbotgserver"); |
|
45 |
|
46 |
|
47 enum TUsbOtgMessages |
|
48 { |
|
49 EUsbOtgDeviceInserted, |
|
50 EUsbOtgNotifyChange, |
|
51 EUsbOtgNotifyChangeCancel, |
|
52 EUsbOtgBusDrop, |
|
53 }; |
|
54 |
|
55 #endif // MSMANCLIENTSERVER_H |
|
56 |
|
57 |