epoc32/include/defaultcaps.hrh
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:27:01 +0100
branchSymbian2
changeset 3 e1b950c65cb4
child 4 837f303aceeb
permissions -rw-r--r--
Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
     1 /*
     2 * Copyright (c) 2009 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 the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description: 
    15 *
    16 */
    17 
    18 #ifndef DEFAULTCAPS_HRH
    19 #define DEFAULTCAPS_HRH
    20 
    21 
    22 // Manufacturer or platform specific VID. A VID to be granted to all software 
    23 // from the same manufacturer.
    24 #define VID_DEFAULT 0x101FB657
    25 
    26 // All capabilities listed here:
    27 // TCB DiskAdmin AllFiles DRM PowerMgmt ProtServ ReadDeviceData WriteDeviceData
    28 // NetworkControl CommDD MultimediaDD SurroundingsDD TrustedUI SwEvent Location NetworkServices
    29 // ReadUserData WriteUserData LocalServices UserEnvironment
    30 
    31 // Default capabilities to be used in mmp file. Usage example:
    32 // CAPABILITY CAP_APPLICATION
    33 
    34 
    35 // General purpose library (dll). UI framework libraries, parsers, basic system 
    36 // services.
    37 #define CAP_GENERAL_DLL ALL -TCB
    38 
    39 // Application (exe), UI or non-UI.
    40 #define CAP_APPLICATION NetworkServices LocalServices Location ReadUserData \
    41                         WriteUserData ReadDeviceData WriteDeviceData SwEvent UserEnvironment
    42 
    43 // MIME-type recogniser. MIME-type recognisers (RecMmf.mdl).
    44 #define CAP_RECOGNISER ProtServ
    45 
    46 // ECOM plugin (dll). HTTP transport framework filters, MMF plugins, 
    47 // ICL plugins.
    48 #define CAP_ECOM_PLUGIN ALL -TCB
    49 
    50 // Server (exe). Symbian OS servers.
    51 #define CAP_SERVER ProtServ ReadDeviceData WriteDeviceData SwEvent Location \
    52                    NetworkServices ReadUserData WriteUserData LocalServices UserEnvironment
    53 
    54 // Client-side interfaces for servers.
    55 #define CAP_CLIENT_DLL ALL -TCB
    56 
    57 // Device Drivers. Display driver, audio driver, camera driver.
    58 #define CAP_DEVICE_DRIVER ALL
    59 
    60 // File server components. File system extensions.
    61 #define CAP_FILE_SERVER ALL
    62 
    63 // SW installer server components. Utilities used by sw install 
    64 // (cryptographic libraries, parsers).
    65 #define CAP_SW_INSTALL TCB NetworkServices ReadDeviceData WriteDeviceData \
    66                        ProtServ PowerMgmt AllFiles TrustedUI
    67 
    68 // Kernel components. Any utility used by kernel.
    69 #define CAP_KERNEL ALL
    70 
    71 
    72 #endif
    73             
    74 // End of File