localisation/localesupport/new_locale_dll/collation/collation_010.cpp
changeset 0 a41df078684a
child 15 4122176ea935
equal deleted inserted replaced
-1:000000000000 0:a41df078684a
       
     1 // Copyright (c) 2000-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of the License "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 #include "ls_std.h"
       
    17 #ifdef _UNICODE
       
    18 #include <collate.h>
       
    19 
       
    20 static const TCollationMethod TheCollationMethod[] =
       
    21 	{
       
    22 		{
       
    23 		KUidBasicCollationMethod,				// this is the standard unlocalised method
       
    24 		NULL,									// null means use the standard table
       
    25 		NULL,									// there's no override table
       
    26 		0										// the flags are standard
       
    27 		}
       
    28 	};
       
    29 
       
    30 static const TCollationDataSet TheCollationDataSet =
       
    31 	{
       
    32 	TheCollationMethod,
       
    33 	1
       
    34 	};
       
    35 
       
    36 // The one and only locale character set object.
       
    37 const LCharSet TheCharSet =
       
    38 	{
       
    39 	NULL,
       
    40 	&TheCollationDataSet
       
    41 	};
       
    42 
       
    43 #endif // _UNICODE