2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2007-02-19 21:26:06 +03:00
|
|
|
|
|
|
|
#include "nsUCConstructors.h"
|
|
|
|
#include "nsCP1131ToUnicode.h"
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Global functions and data [declaration]
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
static const uint16_t g_utMappingTable[] = {
|
2007-02-19 21:26:06 +03:00
|
|
|
#include "cp1131.ut"
|
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Class nsCP1131ToUnicode [implementation]
|
|
|
|
|
2010-06-10 22:11:40 +04:00
|
|
|
nsresult
|
2007-02-19 21:26:06 +03:00
|
|
|
nsCP1131ToUnicodeConstructor(nsISupports* aOuter, REFNSIID aIID,
|
|
|
|
void **aResult)
|
|
|
|
{
|
2007-02-22 00:43:20 +03:00
|
|
|
return CreateOneByteDecoder((uMappingTable*) &g_utMappingTable,
|
2007-02-19 21:26:06 +03:00
|
|
|
aOuter, aIID, aResult);
|
|
|
|
}
|