2001-09-20 04:02:59 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
2000-01-07 00:26:20 +03:00
|
|
|
*
|
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/.
|
2000-01-07 00:26:20 +03:00
|
|
|
*
|
2001-09-20 04:02:59 +04:00
|
|
|
* This Original Code has been modified by IBM Corporation.
|
|
|
|
* Modifications made by IBM described herein are
|
|
|
|
* Copyright (c) International Business Machines
|
|
|
|
* Corporation, 1999
|
2000-01-07 00:26:20 +03:00
|
|
|
*
|
2001-09-20 04:02:59 +04:00
|
|
|
* 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 codepages - 850
|
|
|
|
*
|
|
|
|
*/
|
2000-01-07 00:26:20 +03:00
|
|
|
|
2002-09-07 05:17:57 +04:00
|
|
|
#include "nsUCConstructors.h"
|
2000-01-07 00:26:20 +03:00
|
|
|
#include "nsUnicodeToCP850.h"
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Global functions and data [declaration]
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
static const uint16_t g_ufMappingTable[] = {
|
2000-01-07 00:26:20 +03:00
|
|
|
#include "cp850.uf"
|
|
|
|
};
|
|
|
|
|
2010-06-10 22:11:40 +04:00
|
|
|
nsresult
|
2002-09-07 05:17:57 +04:00
|
|
|
nsUnicodeToCP850Constructor(nsISupports *aOuter, REFNSIID aIID,
|
|
|
|
void **aResult)
|
2000-01-07 00:26:20 +03:00
|
|
|
{
|
2006-08-07 11:57:31 +04:00
|
|
|
return CreateTableEncoder(u1ByteCharset,
|
2002-09-07 05:17:57 +04:00
|
|
|
(uMappingTable*) &g_ufMappingTable, 1,
|
|
|
|
aOuter, aIID, aResult);
|
2000-01-07 00:26:20 +03:00
|
|
|
}
|
|
|
|
|