commonservices/commonengineresources/inc/errorres.rh
changeset 0 4e1aa6a622a0
equal deleted inserted replaced
-1:000000000000 0:4e1aa6a622a0
       
     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 STRUCT ERROR_SET
       
    19 	{
       
    20         WORD dummy = 0x0;
       
    21         WORD version = 0x02;
       
    22 	STRUCT errorarrays[];
       
    23 	}
       
    24 
       
    25 STRUCT ERRORRES_ERROR_ARRAY
       
    26 	{
       
    27 	LLINK text=0;
       
    28 	LONG startError;
       
    29 	LLINK errors;
       
    30 	}
       
    31 
       
    32 STRUCT SINGLE_ERROR
       
    33 	{
       
    34 	BYTE flags=0;
       
    35 	LLINK text=0;
       
    36 	}
       
    37 
       
    38 // End of File