equal
deleted
inserted
replaced
|
1 // Copyright (c) 2006-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 // |
|
15 |
|
16 /** |
|
17 @file |
|
18 @internalComponent |
|
19 */ |
|
20 |
|
21 #ifndef MTPSERVICECOMMON_H_ |
|
22 #define MTPSERVICECOMMON_H_ |
|
23 |
|
24 |
|
25 #define KInvliadU16DataCode 0x0000 |
|
26 |
|
27 #define KInvliadServiceID 0x00000000 |
|
28 |
|
29 |
|
30 #define KNormalServiceTypeMask 0x00000000 |
|
31 |
|
32 #define KAbstrackServiceTypeMask 0x10000000 |
|
33 |
|
34 |
|
35 |
|
36 enum TMTPServiceType |
|
37 { |
|
38 EMTPServiceTypeNormal = 0, |
|
39 EMTPServiceTypeAbstract = 1 |
|
40 }; |
|
41 |
|
42 |
|
43 |
|
44 |
|
45 #endif /* MTPSERVICECOMMON_H_ */ |