changed nsICopyMessageStreamListener.idl to nsICopyMsgStreamListener.idl

This commit is contained in:
putterman%netscape.com 1999-06-14 22:43:45 +00:00
Родитель ab81cc6411
Коммит 9595ad8be4
5 изменённых файлов: 31 добавлений и 3 удалений

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

@ -4,7 +4,7 @@
nsIMessenger.idl
nsICopyMessageListener.idl
nsICopyMessageStreamListener.idl
nsICopyMsgStreamListener.idl
nsIFolder.idl
nsIFolderListener.idl
nsIMessage.idl

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

@ -24,7 +24,7 @@ MODULE = msgbase
include $(DEPTH)/config/autoconf.mk
XPIDLSRCS = \
nsICopyMessageListener.idl \
nsICopyMessageStreamListener.idl \
nsICopyMsgStreamListener.idl \
nsIMessenger.idl \
nsIFolder.idl \
nsIFolderListener.idl \

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

@ -20,7 +20,7 @@ MODULE=msgbase
XPIDLSRCS = \
.\nsIMessenger.idl \
.\nsICopyMessageStreamListener.idl \
.\nsICopyMsgStreamListener.idl \
.\nsICopyMessageListener.idl \
.\nsIFolder.idl \
.\nsIFolderListener.idl \

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

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

@ -0,0 +1,28 @@
/* -*- 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.0 (the "NPL"); you may not use this file except in
* compliance with the NPL. You may obtain a copy of the NPL at
* http://www.mozilla.org/NPL/
*
* Software distributed under the NPL is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
* for the specific language governing rights and limitations under the
* NPL.
*
* The Initial Developer of this code under the NPL is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1999 Netscape Communications Corporation. All Rights
* Reserved.
*/
#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);
};