diff -r 000000000000 -r dd21522fd290 webengine/wmlengine/src/wml/include/nw_wml_var.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/webengine/wmlengine/src/wml/include/nw_wml_var.h Mon Mar 30 12:54:55 2009 +0300 @@ -0,0 +1,53 @@ +/* +* Copyright (c) 1999 - 2001 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of the License "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: +* +*/ + + +/* + $Workfile: nw_wml_var.h $ + + Purpose: + + Function and structure declaration for WML variables and WML variable + lists. The core browser manages user defined variables while processing WML + documents. +*/ + +#ifndef NW_WML_VARS_H +#define NW_WML_VARS_H + +#ifdef __cplusplus +extern "C" { +#endif + +#include "nwx_defs.h" +#include "nwx_memseg.h" +#include "nwx_status.h" + +typedef struct _NW_Wml_Var_t NW_Wml_Var_t; +struct _NW_Wml_Var_t { + NW_Wml_Var_t *next; + NW_Ucs2 *name; + NW_Ucs2 *val; +}; + +typedef NW_Wml_Var_t NW_Wml_VarList_t; + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /* NW_WML_VARS_H */