gecko-dev/mailnews/base/public/nsICopyMessageListener.idl

46 строки
1.4 KiB
Plaintext
Исходник Обычный вид История

1999-03-30 06:19:22 +04:00
/* -*- 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/
1999-03-30 06:19:22 +04:00
*
* 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.
1999-03-30 06:19:22 +04:00
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is Netscape
1999-03-30 06:19:22 +04:00
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1999 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
1999-03-30 06:19:22 +04:00
*/
#include "nsISupports.idl"
#include "MailNewsTypes2.idl"
1999-03-30 06:19:22 +04:00
interface nsIMessage;
1999-05-27 10:30:01 +04:00
interface nsIInputStream;
%{C++
1999-05-27 10:31:10 +04:00
#include "nsIInputStream.h"
1999-05-27 10:30:01 +04:00
%}
1999-03-30 06:19:22 +04:00
[scriptable, uuid(53CA78FE-E231-11d2-8A4D-0060B0FC04D2)]
1999-03-30 06:19:22 +04:00
/* Use this for any object that wants to handle copying/moving messages to it */
interface nsICopyMessageListener : nsISupports
{
1999-04-02 03:42:41 +04:00
void BeginCopy(in nsIMessage message);
void StartMessage();
1999-03-30 06:19:22 +04:00
void CopyData(in nsIInputStream aIStream, in long aLength);
void EndMessage(in nsMsgKey key);
1999-04-02 03:42:41 +04:00
void EndCopy(in boolean copySucceeded);
void EndMove();
1999-03-30 06:19:22 +04:00
};