--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/locales/loce32/src/ls_table.cpp Thu Dec 17 09:14:12 2009 +0200
@@ -0,0 +1,279 @@
+/*
+* Copyright (c) 1994-1999 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "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:
+*
+*/
+
+
+
+#include <kernel/ls_std.h>
+#ifndef EKA2 // Temporarily solution to support release 3.0 compilation
+#include <k32std.h>
+#endif
+#include <complocl.h>
+
+
+EXPORT_C TLanguage Locl::Language()
+//
+// Returns the language type.
+//
+ {
+
+ return(LLocaleData::Language);
+ }
+
+EXPORT_C void Locl::LocaleData(SLocaleData *aLocale)
+//
+// Create the localisation table.
+//
+ {
+
+ aLocale->iCountryCode=LLocaleData::CountryCode;
+ aLocale->iUniversalTimeOffset=LLocaleData::UniversalTimeOffset;
+ aLocale->iDateFormat=LLocaleData::DateFormat;
+ aLocale->iTimeFormat=LLocaleData::TimeFormat;
+ aLocale->iCurrencySymbolPosition=LLocaleData::CurrencySymbolPosition;
+ aLocale->iCurrencySpaceBetween=LLocaleData::CurrencySpaceBetween;
+ aLocale->iCurrencyDecimalPlaces=LLocaleData::CurrencyDecimalPlaces;
+#ifdef EKA2 // Temporarily solution to support release 3.0 compilation
+ aLocale->iNegativeCurrencyFormat=TNegativeCurrencyFormat(LLocaleData::NegativeCurrencyFormat); // replaces iCurrencyNegativeInBrackets
+#else
+ aLocale->iNegativeCurrencyFormat=LLocaleData::NegativeCurrencyFormat; // replaces iCurrencyNegativeInBrackets
+
+#endif
+ aLocale->iCurrencyTriadsAllowed=LLocaleData::CurrencyTriadsAllowed;
+ aLocale->iThousandsSeparator=*LLocaleData::ThousandsSeparator;
+ aLocale->iDecimalSeparator=*LLocaleData::DecimalSeparator;
+ TInt i=0;
+ for(;i<KMaxDateSeparators;i++)
+ aLocale->iDateSeparator[i]=*LLocaleData::DateSeparator[i];
+ for(i=0;i<KMaxTimeSeparators;i++)
+ aLocale->iTimeSeparator[i]=*LLocaleData::TimeSeparator[i];
+ aLocale->iAmPmSymbolPosition=LLocaleData::AmPmSymbolPosition;
+ aLocale->iAmPmSpaceBetween=LLocaleData::AmPmSpaceBetween;
+// aLocale->iDaylightSaving=LLocaleData::DaylightSaving;
+ aLocale->iHomeDaylightSavingZone=LLocaleData::HomeDaylightSavingZone;
+ aLocale->iWorkDays=LLocaleData::WorkDays;
+ aLocale->iStartOfWeek=LLocaleData::StartOfWeek;
+ aLocale->iClockFormat=LLocaleData::ClockFormat;
+ aLocale->iUnitsGeneral=LLocaleData::UnitsGeneral;
+ aLocale->iUnitsDistanceLong=LLocaleData::UnitsGeneral;
+ aLocale->iUnitsDistanceShort=LLocaleData::UnitsGeneral;
+ aLocale->iExtraNegativeCurrencyFormatFlags=LLocaleData::ExtraNegativeCurrencyFormatFlags;
+ }
+
+EXPORT_C const TText * Locl::CurrencySymbol()
+//
+// Returns the address of the currency symbol.
+//
+ {
+
+ return(LLocaleData::CurrencySymbol);
+ }
+
+EXPORT_C const TText* Locl::ShortDateFormatSpec()
+//
+// Returns the address of the short date format.
+//
+ {
+
+ return(LLocaleData::ShortDateFormatSpec);
+ }
+
+EXPORT_C const TText* Locl::LongDateFormatSpec()
+//
+// Returns the address of the long date format.
+//
+ {
+
+ return(LLocaleData::LongDateFormatSpec);
+ }
+
+EXPORT_C const TText* Locl::TimeFormatSpec()
+//
+// Returns the address of the long date format.
+//
+ {
+
+ return(LLocaleData::TimeFormatSpec);
+ }
+
+EXPORT_C const TFatUtilityFunctions* Locl::FatUtilityFunctions()
+//
+// Returns the addresses of the FAT utility functions.
+//
+ {
+
+ return(LLocaleData::FatUtilityFunctions);
+ }
+
+EXPORT_C const TText * const * Locl::DateSuffixTable()
+//
+// Returns the address of the date suffix table.
+//
+ {
+
+ return(&LLanguage::DateSuffixTable[0]);
+ }
+
+EXPORT_C const TText * const * Locl::DayTable()
+//
+// Returns the address of the day table.
+//
+ {
+
+ return(&LLanguage::DayTable[0]);
+ }
+
+EXPORT_C const TText * const * Locl::DayAbbTable()
+//
+// Returns the address of the abbreviated day table.
+//
+ {
+
+ return(&LLanguage::DayAbbTable[0]);
+ }
+
+EXPORT_C const TText * const * Locl::MonthTable()
+//
+// Returns the address of the month table.
+//
+ {
+
+ return(&LLanguage::MonthTable[0]);
+ }
+
+EXPORT_C const TText * const * Locl::MonthAbbTable()
+//
+// Returns the address of the abbreviated month table.
+//
+ {
+
+ return(&LLanguage::MonthAbbTable[0]);
+ }
+
+EXPORT_C const TText * const * Locl::AmPmTable()
+//
+// Returns the address of the AmPm table.
+//
+ {
+
+ return(&LLanguage::AmPmTable[0]);
+ }
+
+EXPORT_C const TText * const * Locl::MsgTable()
+//
+// Returns the address of the message table.
+//
+ {
+
+ return(&LMessages::MsgTable[0]);
+ }
+
+// Return the address of the locale character set object: contains collation rules etc.
+EXPORT_C const LCharSet* Locl::CharSet()
+ {
+ #ifdef _UNICODE
+ return &TheCharSet;
+ #else
+ return NULL;
+ #endif
+ }
+
+// The functions returning locale-specific character attribute tables do not exist in the Unicode build.
+EXPORT_C const TUint8 * Locl::TypeTable()
+//
+// Return the address of the type table.
+//
+ {
+ #ifdef _UNICODE
+ return NULL;
+ #else
+ return(&LAlphabet::TypeTable[0]);
+ #endif
+ }
+
+
+EXPORT_C const TText * Locl::UpperTable()
+//
+// Return the address of the upper table.
+//
+ {
+ #ifdef _UNICODE
+ return NULL;
+ #else
+ return(&LAlphabet::UpperTable[0]);
+ #endif
+
+ }
+
+
+EXPORT_C const TText * Locl::LowerTable()
+//
+// Return the address of the lower table.
+//
+ {
+ #ifdef _UNICODE
+ return NULL;
+ #else
+ return(&LAlphabet::LowerTable[0]);
+ #endif
+ }
+
+
+EXPORT_C const TText * Locl::FoldTable()
+//
+// Return the address of the fold table.
+//
+ {
+ #ifdef _UNICODE
+ return NULL;
+ #else
+ return(&LAlphabet::FoldTable[0]);
+ #endif
+ }
+
+EXPORT_C const TText * Locl::CollTable()
+//
+// Return the address of the collate table.
+//
+ {
+ #ifdef _UNICODE
+ return NULL;
+ #else
+ return(&LAlphabet::CollTable[0]);
+ #endif
+ }
+
+EXPORT_C TBool Locl::UniCode()
+//
+// Returns ETrue for Unicode Build
+//
+ {
+ #ifdef _UNICODE
+ return ETrue;
+ #else
+ return EFalse;
+ #endif
+ }
+
+#ifndef EKA2
+GLDEF_C TInt E32Dll(TDllReason /*aReason*/)
+//
+// DLL entry point
+//
+ {
+ return(KErrNone);
+ }
+#endif