group/UidList.txt
changeset 0 5e763f9e37e8
equal deleted inserted replaced
-1:000000000000 0:5e763f9e37e8
       
     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 "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: Juha Kauppinen, Mika Hokkanen
       
    13 * 
       
    14 * Description: Photo Browser
       
    15 *
       
    16 */
       
    17 
       
    18 /*
       
    19  =====================
       
    20  This list defines the UID3 for the EXE/DLL in the Photo Browser
       
    21  
       
    22  By defining and undefining PROTECTED_UID, the build configuration 
       
    23   switches between the UID in the protected and unprotected range.
       
    24   
       
    25  When built with the protected UID and signed with the test 
       
    26   certificate, it works fine with Ivalo but Tube refuses to install.
       
    27   To try out something on Tube, you need to build with the 
       
    28   unprotected UID.
       
    29 
       
    30  The protected UIDs have been reserved for Photo Browser in the 
       
    31   S60 UID repository.
       
    32  
       
    33  =====================
       
    34 
       
    35  Don't forget to manually change this line in the package file. 
       
    36  
       
    37  ImagicApplication/group/Imagic.pkg:
       
    38  
       
    39  #{"Photo Browser" },(0x2002134F),2,2,1
       
    40  
       
    41  =====================
       
    42  
       
    43 */
       
    44 
       
    45 #define PROTECTED_UID
       
    46 
       
    47 #ifdef PROTECTED_UID
       
    48 
       
    49  #define IDLBgps_UID3            0x20021351
       
    50  #define IDLImageProcessing_UID3 0x20021352
       
    51  #define IEBgps_UID3             0x20021353 
       
    52  #define IEBgpsclient_UID3       0x20021354
       
    53  #define IEEngine_UID3           0x20021350
       
    54  #define Imagic_UID3             0x2002134F
       
    55  #define IEUtils_UID3            0x2002137E
       
    56 
       
    57 #else
       
    58 
       
    59  #define IDLBgps_UID3            0xE0008FBA
       
    60  #define IDLImageProcessing_UID3 0xE0008FBB
       
    61  #define IEBgps_UID3             0xE0008279 
       
    62  #define IEBgpsclient_UID3       0xE000827A
       
    63  #define IEEngine_UID3           0xE0008FBC
       
    64  #define Imagic_UID3             0xE0008FBD
       
    65  #define IEUtils_UID3            0xE0008FBE
       
    66 
       
    67 #endif
       
    68 
       
    69 
       
    70 /*
       
    71   This is not really related to UID.
       
    72 
       
    73   To support Tube PR1, you need to define TUBE_PR1.
       
    74   It's sensor API has some problematic implementation that
       
    75    it requires ReadDeviceData capability from the application.
       
    76 */
       
    77 #define TUBE_PR1
       
    78