extras/about/inc/about.rh
branchRCL_3
changeset 23 41b775cdc0c8
parent 22 0f21a5ec0db7
child 24 10c6e6d6e4d9
equal deleted inserted replaced
22:0f21a5ec0db7 23:41b775cdc0c8
     1 /*
       
     2 * Copyright (c) 2002 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:  define struct for application
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef ABOUT_RH
       
    20 #define ABOUT_RH
       
    21 
       
    22 #include "about.hrh"
       
    23 
       
    24 STRUCT ABOUT_TEXT
       
    25     {
       
    26     BYTE type = EAboutTextItem;
       
    27     BYTE updatetimeflag = EAboutUnUpdateTime;
       
    28     LLINK txt; // set this
       
    29     }
       
    30 
       
    31 STRUCT ABOUT_IMAGE
       
    32     {
       
    33     BYTE type = EAboutImageItem;
       
    34     LTEXT16 bmpfile = ""; // set this
       
    35     WORD bmpid = 0xffff;  // set this
       
    36     }
       
    37     
       
    38 STRUCT ABOUT_SVGIMAGE
       
    39     {    
       
    40     WORD svgid = 0xffff;        // set this
       
    41     WORD svgmaskid = 0xffff;    // set this
       
    42     WORD height = 32;           // set this
       
    43     WORD width = 32;            // set this
       
    44     }
       
    45 
       
    46 STRUCT ABOUT_ITEM_LIST
       
    47     {
       
    48     STRUCT items[]; // text or image items
       
    49     }
       
    50 
       
    51 #endif // ABOUT_RH