equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002-2005 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: Client-Server Request codes |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef __EPOS_SUPLNETWORKIPC_H__ |
|
21 #define __EPOS_SUPLNETWORKIPC_H__ |
|
22 |
|
23 // 0x00000000 to 0x00000FFF not used |
|
24 #define ESuplNWIpcOffset 0x5000 |
|
25 |
|
26 // 0x00005000 to 0x00005FFF reserved for RSuplNetworkServer requests |
|
27 #define ESuplServerNWIpcOffset (ESuplNWIpcOffset) |
|
28 |
|
29 // 0x00006000 to 0x00007FFF reserved for subsession requests |
|
30 #define ESuplSubsessnNWIpcOffset (ESuplServerNWIpcOffset + 0x1000) |
|
31 |
|
32 // 0x60000000 to 0x7FFFFFFF reserved for 3rd party extensions to the SUPL API. |
|
33 // All extensions implemented by 3rd parties should be implemented in this range. |
|
34 #define ESuplNWCustomIpcOffset 0x60000000 |
|
35 |
|
36 |
|
37 enum TSuplNWIpcId |
|
38 { |
|
39 // |
|
40 // Request IDs |
|
41 ESuplNetworkForwardSuplMsg = ESuplServerNWIpcOffset, |
|
42 |
|
43 ESuplNWCustomCodesBegin = ESuplNWCustomIpcOffset, |
|
44 }; |
|
45 |
|
46 #endif // __EPOS_SUPLNETWORKIPC_H__ |