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 "nsUnicodeToCP1125.h"
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Global functions and data [declaration]
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
static const uint16_t g_ufMappingTable[] = {
|
2007-02-19 21:26:06 +03:00
|
|
|
#include "cp1125.uf"
|
|
|
|
};
|
|
|
|
|
2010-06-10 22:11:40 +04:00
|
|
|
nsresult
|
2007-02-19 21:26:06 +03:00
|
|
|
nsUnicodeToCP1125Constructor(nsISupports *aOuter, REFNSIID aIID,
|
|
|
|
void **aResult)
|
|
|
|
{
|
2007-02-21 20:38:25 +03:00
|
|
|
return CreateTableEncoder(u1ByteCharset,
|
2007-02-19 21:26:06 +03:00
|
|
|
(uMappingTable*) &g_ufMappingTable, 1,
|
|
|
|
aOuter, aIID, aResult);
|
|
|
|
}
|
|
|
|
|