dependencies/defaultcaps.hrh
author Christian Morlok <symbian.org@christianmorlok.de>
Wed, 07 Apr 2010 14:35:19 +0200
branchv5backport
changeset 54 666a2952b5b3
parent 17 c9bafd575d88
permissions -rw-r--r--
renamed dlls+exe to prevent conflicts with existing files in emulator; changelog attached. * renamed dlls/exe: - aifw.dll to aifw_hs.dll - cputils to cputils_hs - aiidleint.dll to aiidleint_hs.dll - aiutils.dll to aiutils_hs.dll - MenuInterface.dll to MenuInterface_hs.dll - XCFW.dll to XCFW_hs.dll - homescreen.exe to homescreen_hs.exe - ailaunch.exe to ailaunch_hs.exe * new UID for Active Idle (aifw_hs.dll, aiidleint_hs.dll and homescreen.exe): #define AI_UID3_AIFW_COMMON 0xEDFF45C4 (was 0x102750F0 = 271012080) * new UID for cputils_hs.dll: 0xE3E7134E (was 0x20016B7F = 536963967) * new UID for AI Utilities Factory (aiutils_hs.dll): 0xEC55106C (was 0x10281865 = 271063141) * new UID for MenuInterface_hs.dll: 0xEEE24485 (was 0x10210EAB = 270601899) * new UID for XCFW_hs.dll: 0xEB12332F (was 0x10210EA0 = 270601888) * new UID for ailaunch_hs.exe: 0xEF5A047A (was 0x200286E3 = 537036515)

/*
* ==============================================================================
*  Name        : defaultcaps.hrh
*  Part of     : 
*  Interface   : 
*  Description : Platform security capabilities - Default capabilities for ROM 
*                based sw.
*  Version     : 0.7
*
*  Copyright © 2002-2004 Nokia. All rights reserved.
*  This material, including documentation and any related 
*  computer programs, is protected by copyright controlled by 
*  Nokia. All rights are reserved. Copying, including 
*  reproducing, storing, adapting or translating, any 
*  or all of this material requires the prior written consent of 
*  Nokia. This material also contains confidential 
*  information which may not be disclosed to others without the 
*  prior written consent of Nokia.
* ==============================================================================
*/


#ifndef DEFAULTCAPS_HRH
#define DEFAULTCAPS_HRH


// Manufacturer or platform specific VID. A VID to be granted to all software 
// from the same manufacturer.
#define VID_DEFAULT 0x101FB657

// All capabilities listed here:
// TCB DiskAdmin AllFiles DRM PowerMgmt ProtServ ReadDeviceData WriteDeviceData
// NetworkControl CommDD MultimediaDD SurroundingsDD TrustedUI SwEvent Location NetworkServices
// ReadUserData WriteUserData LocalServices UserEnvironment

// Default capabilities to be used in mmp file. Usage example:
// CAPABILITY CAP_APPLICATION


// General purpose library (dll). UI framework libraries, parsers, basic system 
// services.
#define CAP_GENERAL_DLL ALL -TCB

// Application (exe), UI or non-UI.
#define CAP_APPLICATION NetworkServices LocalServices Location ReadUserData \
                        WriteUserData ReadDeviceData WriteDeviceData SwEvent UserEnvironment

// MIME-type recogniser. MIME-type recognisers (RecMmf.mdl).
#define CAP_RECOGNISER ProtServ

// ECOM plugin (dll). HTTP transport framework filters, MMF plugins, 
// ICL plugins.
#define CAP_ECOM_PLUGIN ALL -TCB

// Server (exe). Symbian OS servers.
#define CAP_SERVER ProtServ ReadDeviceData WriteDeviceData SwEvent Location \
                   NetworkServices ReadUserData WriteUserData LocalServices UserEnvironment

// Client-side interfaces for servers.
#define CAP_CLIENT_DLL ALL -TCB

// Device Drivers. Display driver, audio driver, camera driver.
#define CAP_DEVICE_DRIVER ALL

// File server components. File system extensions.
#define CAP_FILE_SERVER ALL

// SW installer server components. Utilities used by sw install 
// (cryptographic libraries, parsers).
#define CAP_SW_INSTALL TCB NetworkServices ReadDeviceData WriteDeviceData \
                       ProtServ PowerMgmt AllFiles TrustedUI

// Kernel components. Any utility used by kernel.
#define CAP_KERNEL ALL


#endif
            
// End of File