Bug #39736 --> pass in the charset to quote the body with. this helps fix charset over ride has

no effect on quoting.
r=nhotta
This commit is contained in:
mscott%netscape.com 2000-07-20 07:41:12 +00:00
Родитель 332c5f46df
Коммит 0d5033b130
1 изменённых файлов: 7 добавлений и 3 удалений

Просмотреть файл

@ -28,10 +28,14 @@
interface nsIMsgQuote : nsISupports {
/*
* This is the primary interface for quoting a particular message specified
* by a URI
by a URI
*/
void QuoteMessage(in wstring msgURI, in boolean quoteHeaders, in
nsIStreamListener aStreamListener);
/* aCharset is an option parameter which can be used to force the message to be
quoted using a particular charset.
*/
void QuoteMessage(in wstring msgURI, in boolean quoteHeaders, in
nsIStreamListener aStreamListener, in wstring aCharset);
readonly attribute nsIMimeStreamConverterListener quoteListener;
readonly attribute nsIChannel quoteChannel;
readonly attribute nsIStreamListener streamListener;