javamanager/javasidchecker/data/10281FBE.rss
branchGCC_SURGE
changeset 55 d93ef1df440d
parent 43 6d7ae91094e7
parent 53 3035d69b481d
equal deleted inserted replaced
43:6d7ae91094e7 55:d93ef1df440d
     1 /*
       
     2 * Copyright (c) 2008 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:  Java Sid Checker is an ECOM plugin for Symbian AppArc
       
    15 *                (database that contains info on all applications installed
       
    16 *                 to the device)
       
    17 *                It tells AppArc whether Java application installed
       
    18 *                to a removable storage media is present and can be executed.
       
    19 *
       
    20 */
       
    21 
       
    22 
       
    23 // Registry file for the CApparcVerifierInterface JavaRegistry implementation
       
    24 
       
    25 #include <ecom/registryinfov2.rh>
       
    26 #include "javauids.h"
       
    27 
       
    28 RESOURCE REGISTRY_INFO r_registry
       
    29 {
       
    30     resource_format_version = RESOURCE_FORMAT_VERSION_2;
       
    31 	dll_uid = KJavaSidCheckerDllUid;    // must match the name of this file
       
    32 	interfaces =
       
    33 	{
       
    34 		INTERFACE_INFO
       
    35 		{
       
    36 			interface_uid = KSidCheckerEcomIfUid;
       
    37 			implementations =
       
    38 			{
       
    39 				IMPLEMENTATION_INFO
       
    40 				{
       
    41 					implementation_uid = KSidCheckerEcomImplUid;
       
    42 					// Version number is 2 so that this implementation should override the old one in ROM
       
    43                     version_no         =  2;
       
    44 					display_name = "JavaVerify";
       
    45 					default_data = "[10210e26]";
       
    46 					opaque_data  = "";
       
    47 					rom_only           =  0;
       
    48 				}
       
    49 			};
       
    50 		}
       
    51 	};
       
    52 }