commondrm/drmencryptor/inc/DRMEncryptor.rh
branchRCL_3
changeset 27 1481bf457703
parent 0 95b198f216e5
equal deleted inserted replaced
26:1221b68b8a5f 27:1481bf457703
       
     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:  
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef DRMEncryptor_RH
       
    20 #define DRMEncryptor_RH
       
    21 
       
    22 #include "DRMEncryptor.hrh"
       
    23 
       
    24 STRUCT DRMEncryptor_TEXT
       
    25     {
       
    26     BYTE type = EDRMEncryptorTextItem;
       
    27     LLINK txt; // set this
       
    28     }
       
    29 
       
    30 STRUCT DRMEncryptor_IMAGE
       
    31     {
       
    32     BYTE type = EDRMEncryptorImageItem;
       
    33     LTEXT16 bmpfile = ""; // set this
       
    34     WORD bmpid = 0xffff;  // set this
       
    35     }
       
    36 
       
    37 STRUCT DRMEncryptor_ITEM_LIST
       
    38     {
       
    39     STRUCT items[]; // text or image items
       
    40     }
       
    41 
       
    42 #endif // DRMEncryptor_RH