17
|
1 |
/*
|
|
2 |
* ==============================================================================
|
|
3 |
* Name : defaultcaps.hrh
|
|
4 |
* Part of :
|
|
5 |
* Interface :
|
|
6 |
* Description : Platform security capabilities - Default capabilities for ROM
|
|
7 |
* based sw.
|
|
8 |
* Version : 0.7
|
|
9 |
*
|
|
10 |
* Copyright © 2002-2004 Nokia. All rights reserved.
|
|
11 |
* This material, including documentation and any related
|
|
12 |
* computer programs, is protected by copyright controlled by
|
|
13 |
* Nokia. All rights are reserved. Copying, including
|
|
14 |
* reproducing, storing, adapting or translating, any
|
|
15 |
* or all of this material requires the prior written consent of
|
|
16 |
* Nokia. This material also contains confidential
|
|
17 |
* information which may not be disclosed to others without the
|
|
18 |
* prior written consent of Nokia.
|
|
19 |
* ==============================================================================
|
|
20 |
*/
|
|
21 |
|
|
22 |
|
|
23 |
#ifndef DEFAULTCAPS_HRH
|
|
24 |
#define DEFAULTCAPS_HRH
|
|
25 |
|
|
26 |
|
|
27 |
// Manufacturer or platform specific VID. A VID to be granted to all software
|
|
28 |
// from the same manufacturer.
|
|
29 |
#define VID_DEFAULT 0x101FB657
|
|
30 |
|
|
31 |
// All capabilities listed here:
|
|
32 |
// TCB DiskAdmin AllFiles DRM PowerMgmt ProtServ ReadDeviceData WriteDeviceData
|
|
33 |
// NetworkControl CommDD MultimediaDD SurroundingsDD TrustedUI SwEvent Location NetworkServices
|
|
34 |
// ReadUserData WriteUserData LocalServices UserEnvironment
|
|
35 |
|
|
36 |
// Default capabilities to be used in mmp file. Usage example:
|
|
37 |
// CAPABILITY CAP_APPLICATION
|
|
38 |
|
|
39 |
|
|
40 |
// General purpose library (dll). UI framework libraries, parsers, basic system
|
|
41 |
// services.
|
|
42 |
#define CAP_GENERAL_DLL ALL -TCB
|
|
43 |
|
|
44 |
// Application (exe), UI or non-UI.
|
|
45 |
#define CAP_APPLICATION NetworkServices LocalServices Location ReadUserData \
|
|
46 |
WriteUserData ReadDeviceData WriteDeviceData SwEvent UserEnvironment
|
|
47 |
|
|
48 |
// MIME-type recogniser. MIME-type recognisers (RecMmf.mdl).
|
|
49 |
#define CAP_RECOGNISER ProtServ
|
|
50 |
|
|
51 |
// ECOM plugin (dll). HTTP transport framework filters, MMF plugins,
|
|
52 |
// ICL plugins.
|
|
53 |
#define CAP_ECOM_PLUGIN ALL -TCB
|
|
54 |
|
|
55 |
// Server (exe). Symbian OS servers.
|
|
56 |
#define CAP_SERVER ProtServ ReadDeviceData WriteDeviceData SwEvent Location \
|
|
57 |
NetworkServices ReadUserData WriteUserData LocalServices UserEnvironment
|
|
58 |
|
|
59 |
// Client-side interfaces for servers.
|
|
60 |
#define CAP_CLIENT_DLL ALL -TCB
|
|
61 |
|
|
62 |
// Device Drivers. Display driver, audio driver, camera driver.
|
|
63 |
#define CAP_DEVICE_DRIVER ALL
|
|
64 |
|
|
65 |
// File server components. File system extensions.
|
|
66 |
#define CAP_FILE_SERVER ALL
|
|
67 |
|
|
68 |
// SW installer server components. Utilities used by sw install
|
|
69 |
// (cryptographic libraries, parsers).
|
|
70 |
#define CAP_SW_INSTALL TCB NetworkServices ReadDeviceData WriteDeviceData \
|
|
71 |
ProtServ PowerMgmt AllFiles TrustedUI
|
|
72 |
|
|
73 |
// Kernel components. Any utility used by kernel.
|
|
74 |
#define CAP_KERNEL ALL
|
|
75 |
|
|
76 |
|
|
77 |
#endif
|
|
78 |
|
|
79 |
// End of File
|