2001-09-26 00:40:45 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
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-02-06 23:54:12 +00:00
|
|
|
|
|
|
|
#ifndef nsUnicodeToMacRoman_h___
|
|
|
|
#define nsUnicodeToMacRoman_h___
|
|
|
|
|
2013-09-27 16:45:04 +00:00
|
|
|
#include "nsID.h"
|
|
|
|
|
|
|
|
class nsISupports;
|
2002-09-07 01:17:57 +00:00
|
|
|
|
2001-02-06 23:54:12 +00:00
|
|
|
// Class ID for our UnicodeToMacRoman charset converter
|
|
|
|
// {7B8556AF-EC79-11d2-8AAC-00600811A836}
|
|
|
|
#define NS_UNICODETOMACROMAN_CID \
|
|
|
|
{ 0x7b8556af, 0xec79, 0x11d2, {0x8a, 0xac, 0x0, 0x60, 0x8, 0x11, 0xa8, 0x36}}
|
|
|
|
|
2012-10-17 10:15:23 +00:00
|
|
|
#define NS_UNICODETOMACROMAN_CONTRACTID "@mozilla.org/intl/unicode/encoder;1?charset=macintosh"
|
2001-02-06 23:54:12 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A character set converter from Unicode to MacRoman.
|
|
|
|
*
|
|
|
|
* @created 05/Apr/1999
|
|
|
|
* @author Catalin Rotaru [CATA]
|
|
|
|
*/
|
2010-06-10 18:11:40 +00:00
|
|
|
nsresult
|
2002-09-07 01:17:57 +00:00
|
|
|
nsUnicodeToMacRomanConstructor(nsISupports *aOuter, REFNSIID aIID,
|
|
|
|
void **aResult);
|
2001-02-06 23:54:12 +00:00
|
|
|
|
|
|
|
#endif /* nsUnicodeToMacRoman_h___ */
|