webengine/osswebengine/WebKit/s60/misc/WebCharsetData.h
changeset 0 dd21522fd290
child 48 79859ed3eea9
equal deleted inserted replaced
-1:000000000000 0:dd21522fd290
       
     1 /*
       
     2 * Copyright (c) 2006 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:  provides mapping from iana code, symbian charset UID code and common
       
    15 *                 internet names.
       
    16 *
       
    17 */
       
    18 #ifndef __CHARSETDATA_H
       
    19 #define __CHARSETDATA_H
       
    20 
       
    21 #include <CHARCONV.H>
       
    22 struct TCharsetEntry
       
    23 {
       
    24   TUint32 uid;
       
    25   const TText* charsetName;
       
    26 };
       
    27 
       
    28 const TText* charsetForUid(unsigned int uid);
       
    29 unsigned int  uidForCharset(TText* charset);
       
    30 
       
    31 //  UID (symbian),                      standard + common charset name
       
    32 
       
    33 #endif /* __CHARSETDATA_H */
       
    34 
       
    35 // End of File