2001-09-20 00:02:59 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
2000-01-06 21:26:20 +00:00
|
|
|
*
|
2012-05-21 11:12:37 +00: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/.
|
2001-09-20 00:02:59 +00:00
|
|
|
*
|
|
|
|
* This Original Code has been modified by IBM Corporation.
|
|
|
|
* Modifications made by IBM described herein are
|
|
|
|
* Copyright (c) International Business Machines
|
|
|
|
* Corporation, 1999
|
|
|
|
*
|
|
|
|
* Modifications to Mozilla code or documentation
|
|
|
|
* identified per MPL Section 3.3
|
|
|
|
*
|
|
|
|
* Date Modified by Description of modification
|
|
|
|
* 12/09/1999 IBM Corp. Support for IBM codepage 850
|
|
|
|
*
|
|
|
|
*/
|
2000-01-06 21:26:20 +00:00
|
|
|
|
2002-09-07 01:17:57 +00:00
|
|
|
#include "nsUCConstructors.h"
|
2000-01-06 21:26:20 +00:00
|
|
|
#include "nsCP857ToUnicode.h"
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Global functions and data [declaration]
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
static const uint16_t g_utMappingTable[] = {
|
2000-01-06 21:26:20 +00:00
|
|
|
#include "cp857.ut"
|
|
|
|
};
|
|
|
|
|
2010-06-10 18:11:40 +00:00
|
|
|
nsresult
|
2002-09-07 01:17:57 +00:00
|
|
|
nsCP857ToUnicodeConstructor(nsISupports *aOuter, REFNSIID aIID,
|
|
|
|
void **aResult)
|
2000-01-06 21:26:20 +00:00
|
|
|
{
|
2006-08-07 07:57:31 +00:00
|
|
|
return CreateOneByteDecoder((uMappingTable*) &g_utMappingTable,
|
2002-09-07 01:17:57 +00:00
|
|
|
aOuter, aIID, aResult);
|
2000-01-06 21:26:20 +00:00
|
|
|
}
|
|
|
|
|