24
|
1 |
// Copyright (c) 2004-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 |
// Declares public publish and subscribe categories and keys.
|
|
15 |
//
|
|
16 |
//
|
|
17 |
|
|
18 |
/**
|
|
19 |
@file
|
|
20 |
*/
|
|
21 |
#ifndef __SIMTSYGLOBALPROPERTIES_H__
|
|
22 |
#define __SIMTSYGLOBALPROPERTIES_H__
|
|
23 |
|
|
24 |
#include <e32property.h>
|
|
25 |
|
|
26 |
/**
|
|
27 |
@deprecated
|
|
28 |
|
|
29 |
Not used.
|
|
30 |
**/
|
|
31 |
const TInt KUidSimtsyCategoryValueLocal = 0x0;
|
|
32 |
/**
|
|
33 |
@deprecated
|
|
34 |
|
|
35 |
Use Publish & Subscribe KUidPSSimTsyCategory instead.
|
|
36 |
**/
|
|
37 |
const TUid KUidSimtsyCategoryLocal = {KUidSimtsyCategoryValueLocal};
|
|
38 |
|
|
39 |
/**
|
|
40 |
@deprecated
|
|
41 |
|
|
42 |
Use Publish & Subscribe KPSSimTsyTestNumberValue instead.
|
|
43 |
**/
|
|
44 |
const TInt KSimtsyTestNumberKeyLocal = 0;
|
|
45 |
/**
|
|
46 |
@deprecated
|
|
47 |
|
|
48 |
Use Publish & Subscribe KPSSimTsyTestNumberKeyType instead.
|
|
49 |
**/
|
|
50 |
const RProperty::TType KSimtsyTestNumberKeyTypeLocal = RProperty::EInt;
|
|
51 |
/**
|
|
52 |
@deprecated
|
|
53 |
|
|
54 |
Use Publish & Subscribe KPSSimTsyRegStatChangeValue instead.
|
|
55 |
**/
|
|
56 |
const TInt KSimtsyRegStatChange = 1;
|
|
57 |
/**
|
|
58 |
@deprecated
|
|
59 |
|
|
60 |
Use Publish & Subscribe KPSSimTsyRegStatChangeKeyType instead.
|
|
61 |
**/
|
|
62 |
const RProperty::TType KSimtsyRegStatChangeType = RProperty::EInt;
|
|
63 |
/**
|
|
64 |
@deprecated
|
|
65 |
|
|
66 |
Use Publish & Subscribe KPSSimTsySignalStrengthChangeValue instead.
|
|
67 |
**/
|
|
68 |
const TInt KSimtsySignalStrengthChange = 2;
|
|
69 |
/**
|
|
70 |
@deprecated
|
|
71 |
|
|
72 |
Use Publish & Subscribe KPSSimTsySignalStrengthChangeKeyType instead.
|
|
73 |
**/
|
|
74 |
const RProperty::TType KSimtsySignalStrengthChangeType = RProperty::EInt;
|
|
75 |
|
|
76 |
#endif // __SIMTSYGLOBALPROPERTIES_H__
|