webengine/wmlengine/src/wml/include/nw_wml_var.h
changeset 0 dd21522fd290
child 37 cb62a4f66ebe
equal deleted inserted replaced
-1:000000000000 0:dd21522fd290
       
     1 /*
       
     2 * Copyright (c) 1999 - 2001 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 the License "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 /*
       
    20     $Workfile: nw_wml_var.h $
       
    21 
       
    22     Purpose:
       
    23 
       
    24         Function and structure declaration for WML variables and WML variable
       
    25         lists. The core browser manages user defined variables while processing WML
       
    26         documents.
       
    27 */
       
    28 
       
    29 #ifndef NW_WML_VARS_H
       
    30 #define NW_WML_VARS_H
       
    31 
       
    32 #ifdef __cplusplus
       
    33 extern "C" {
       
    34 #endif
       
    35 
       
    36 #include "nwx_defs.h"
       
    37 #include "nwx_memseg.h"
       
    38 #include "nwx_status.h"
       
    39 
       
    40 typedef struct _NW_Wml_Var_t NW_Wml_Var_t;
       
    41 struct _NW_Wml_Var_t {
       
    42   NW_Wml_Var_t  *next;
       
    43   NW_Ucs2     *name;
       
    44   NW_Ucs2     *val;
       
    45 };
       
    46 
       
    47 typedef NW_Wml_Var_t NW_Wml_VarList_t;
       
    48 
       
    49 #ifdef __cplusplus
       
    50 } /* extern "C" */
       
    51 #endif
       
    52 
       
    53 #endif /* NW_WML_VARS_H */