diff options
author | Matt A. Tobin <email@mattatobin.com> | 2019-11-03 00:17:46 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2019-11-03 00:17:46 -0400 |
commit | 08aaeffab2eddfb2912a089f304bd051da4784b8 (patch) | |
tree | b191a895f8716efcbe42f454f37597a545a6f421 /mailnews/base/public/nsICopyMsgStreamListener.idl | |
parent | ac253a52fc3b4acb440d498021e8dc7b0da44b0c (diff) | |
download | uxp-08aaeffab2eddfb2912a089f304bd051da4784b8.tar.gz |
Issue mcp-graveyard/UXP#1258 - Part 1: Import mailnews, ldap, and mork from comm-esr52.9.1
Diffstat (limited to 'mailnews/base/public/nsICopyMsgStreamListener.idl')
-rw-r--r-- | mailnews/base/public/nsICopyMsgStreamListener.idl | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/mailnews/base/public/nsICopyMsgStreamListener.idl b/mailnews/base/public/nsICopyMsgStreamListener.idl new file mode 100644 index 0000000000..8c3c4e0802 --- /dev/null +++ b/mailnews/base/public/nsICopyMsgStreamListener.idl @@ -0,0 +1,18 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* 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/. */ + +#include "nsISupports.idl" +#include "nsIMsgFolder.idl" +#include "nsICopyMessageListener.idl" + +[scriptable, uuid(7741DAEC-2125-11d3-8A90-0060B0FC04D2)] + +interface nsICopyMessageStreamListener: nsISupports +{ + void Init(in nsIMsgFolder srcFolder, in nsICopyMessageListener destination, in nsISupports listenerData); + void StartMessage(); + void EndMessage(in nsMsgKey key); + void EndCopy(in nsISupports url, in nsresult aStatus); +}; |