|
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 "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 // Location Based Services SUPL Push APIs - common types |
|
15 // |
|
16 // |
|
17 |
|
18 /** |
|
19 @file |
|
20 @publishedPartner |
|
21 @deprecated |
|
22 */ |
|
23 #ifndef SUPL_PUSH_COMMON_H |
|
24 #define SUPL_PUSH_COMMON_H |
|
25 |
|
26 |
|
27 //------------------------------------------------------------------------------- |
|
28 #include <e32base.h> |
|
29 |
|
30 |
|
31 //------------------------------------------------------------------------------- |
|
32 /** A type for the unique SUPL Push request identifier. |
|
33 @publishedPartner |
|
34 @deprecated |
|
35 */ |
|
36 typedef TUint32 TLbsSuplPushRequestId; |
|
37 |
|
38 //------------------------------------------------------------------------------- |
|
39 /** A type for the channel on which a SUPL Push request was received |
|
40 @see _TLbsSuplPushChannel |
|
41 @publishedPartner |
|
42 @deprecated |
|
43 */ |
|
44 typedef TUint32 TLbsSuplPushChannel; |
|
45 |
|
46 /** The response to a privacy request. |
|
47 |
|
48 Note that the TLbsSuplPushChannel enum may be extended in the future by adding |
|
49 more enumerated values. To maintain compatibility any unrecognized values |
|
50 must be handled as ELbsSuplPushChannelUnknown. |
|
51 @see TLbsSuplPushChannel |
|
52 @publishedPartner |
|
53 @deprecated |
|
54 */ |
|
55 enum _TLbsSuplPushChannel |
|
56 { |
|
57 /** Not used/unknown */ |
|
58 ELbsSuplPushChannelUnknown = 0, |
|
59 /** Used to open a SUPL SMS Push channel. */ |
|
60 ELbsSuplPushChannelSMS = 1, |
|
61 /** Used to open a SUPL WAP Push channel. */ |
|
62 ELbsSuplPushChannelWAP = 2 |
|
63 }; |
|
64 |
|
65 |
|
66 #endif //SUPL_PUSH_COMMON_H |