33
|
1 |
/*
|
|
2 |
* Copyright (c) 2005-2006 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: Device manager private CenRep key definitions
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
|
|
19 |
#ifndef NSMLDMSYNCAPP_PRIVATE_CR_KEYS_H
|
|
20 |
#define NSMLDMSYNCAPP_PRIVATE_CR_KEYS_H
|
|
21 |
|
|
22 |
// CONSTANTS
|
|
23 |
|
|
24 |
// Device manager key UID
|
|
25 |
const TUid KCRUidNSmlDMSyncApp = {0x101f6de5};
|
|
26 |
//browser uid
|
|
27 |
const TUid browseruid = {0x10008d39};
|
|
28 |
//java uid
|
|
29 |
const TUid javauid = {0x2001FD68};
|
|
30 |
//flash uid
|
|
31 |
const TUid flashuid = {0x101FD693};
|
|
32 |
|
|
33 |
// CenRep keys for default dm profile used in the
|
|
34 |
// firmware update over the air.
|
60
|
35 |
const TUint32 KNSmlDMDefaultFotaProfileKey = 0x00000001;
|
33
|
36 |
|
|
37 |
// CenRep key that can be used to hide a DM profile from the
|
|
38 |
// profile list on the UI, but still retaining the UI functionality
|
|
39 |
// during server alerted session. The server identifier used
|
|
40 |
// to authenticate the server should be stored here.
|
60
|
41 |
const TUint32 KNSmlDMFotaHiddenProfileIdKey = 0x00000002;
|
33
|
42 |
|
|
43 |
// CenRep key that can be used to allow to show runtime versions
|
|
44 |
// or not.Default value is 0 which makes it off
|
60
|
45 |
const TUint32 KNsmlDmRuntimeVerSupport = 0x00000003;
|
33
|
46 |
|
|
47 |
|
|
48 |
#endif // NSMLDMSYNCAPP_PRIVATE_CR_KEYS_H
|
|
49 |
|
|
50 |
// End of File
|