gecko-dev/intl/uconv/ucvibm/nsCP1131ToUnicode.cpp

25 строки
816 B
C++
Исходник Обычный вид История

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/. */
#include "nsUCConstructors.h"
#include "nsCP1131ToUnicode.h"
//----------------------------------------------------------------------
// Global functions and data [declaration]
static const uint16_t g_utMappingTable[] = {
#include "cp1131.ut"
};
//----------------------------------------------------------------------
// Class nsCP1131ToUnicode [implementation]
nsresult
nsCP1131ToUnicodeConstructor(nsISupports* aOuter, REFNSIID aIID,
void **aResult)
{
2007-02-22 00:43:20 +03:00
return CreateOneByteDecoder((uMappingTable*) &g_utMappingTable,
aOuter, aIID, aResult);
}