equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: Global definitions for IPCommServer and client side interface. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef __HTIIPCOMMSERVERCOMMON_H__ |
|
20 #define __HTIIPCOMMSERVERCOMMON_H__ |
|
21 |
|
22 // INCLUDES |
|
23 #include <e32base.h> |
|
24 |
|
25 // CONSTANTS |
|
26 |
|
27 // The server name (and server thread name) |
|
28 _LIT( KIPCommServerName, "HtiIPCommServer" ); |
|
29 const TUid KIPCommServerUid3={0x200212DC}; |
|
30 |
|
31 // The version of the server |
|
32 const TUint KIPCommServerMajorVersionNumber = 1; |
|
33 const TUint KIPCommServerMinorVersionNumber = 0; |
|
34 const TUint KIPCommServerBuildVersionNumber = 0; |
|
35 |
|
36 // "Hihavakiot" |
|
37 const TInt KIPCommServerReceiveBufferMaxSize = 0x1000; // 4096 bytes |
|
38 const TInt KIPCommServerSendBufferMaxSize = 0x1000; // 4096 bytes |
|
39 |
|
40 |
|
41 // DATA TYPES |
|
42 |
|
43 // The message ID's of IPCommServer |
|
44 // from Symbian side |
|
45 enum TIPCommServerRqst |
|
46 { |
|
47 EIPCommServerRecv, |
|
48 EIPCommServerSend, |
|
49 EIPCommServerCancelRecv, |
|
50 EIPCommServerCancelSend |
|
51 }; |
|
52 |
|
53 |
|
54 #endif // __HTIIPCOMMCLIENTSERVERCOMMON_H__ |
|
55 |
|
56 // End of File |