mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
0257791053
is mentioned to mention a contractid, including in identifiers. r=warren
82 lines
3.1 KiB
Plaintext
82 lines
3.1 KiB
Plaintext
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*/
|
|
#include "nsISupports.idl"
|
|
#include "nsrootidl.idl"
|
|
|
|
interface nsIOutputStream;
|
|
interface nsIInputStream;
|
|
interface nsIURI;
|
|
interface nsIStreamListener;
|
|
interface nsIChannel;
|
|
|
|
[scriptable, uuid(39E329E2-357F-11d3-8EFD-00A024A7D144)]
|
|
interface nsMimeHeaderDisplayTypes
|
|
{
|
|
const long MicroHeaders = 0;
|
|
const long NormalHeaders = 1;
|
|
const long AllHeaders = 2;
|
|
};
|
|
|
|
%{C++
|
|
//#define NS_IMIME_MISC_STATUS_KEY "@mozilla.org/messenger/mimestatus;1?"
|
|
#define NS_IMIME_MISC_STATUS_KEY "@mozilla.org/MimeMiscStatus;1?type="
|
|
%}
|
|
|
|
[scriptable, uuid(D01D7B59-DCCD-11d2-A411-00805F613C79)]
|
|
interface nsIMimeEmitter : nsISupports{
|
|
|
|
// These will be called to start and stop the total operation
|
|
void Initialize(in nsIURI url, in nsIChannel aChannel, in long aFormat);
|
|
void Complete();
|
|
|
|
// Set the output stream/listener for processed data.
|
|
void SetPipe(in nsIInputStream inputStream, in nsIOutputStream outStream);
|
|
void SetOutputListener(in nsIStreamListener listener);
|
|
|
|
// Header handling routines.
|
|
void StartHeader(in PRBool rootMailHeader, in PRBool headerOnly,
|
|
[const] in string msgID, [const] in string outCharset);
|
|
void AddHeaderField([const] in string field, [const] in string value);
|
|
void EndHeader();
|
|
void UpdateCharacterSet([const] in string aCharset);
|
|
|
|
// Attachment handling routines
|
|
void StartAttachment([const] in string name, [const] in string contentType,
|
|
[const] in string url, in PRBool aNotDownloaded);
|
|
void AddAttachmentField([const] in string field, [const] in string value);
|
|
void EndAttachment();
|
|
|
|
void EndAllAttachments();
|
|
|
|
// Body handling routines
|
|
void StartBody(in PRBool bodyOnly, [const] in string msgID, [const] in string outCharset);
|
|
void WriteBody([const] in string buf, in PRUint32 size, out PRUint32 amountWritten);
|
|
void EndBody();
|
|
|
|
// Generic write routine. This is necessary for output that
|
|
// libmime needs to pass through without any particular parsing
|
|
// involved (i.e. decoded images, HTML Body Text, etc...
|
|
void Write([const] in string buf, in PRUint32 size, out PRUint32 amountWritten);
|
|
void UtilityWrite([const] in string buf);
|
|
};
|
|
|