added one more parameter, nsresult result, to NotifyCompletion()

This commit is contained in:
jefft%netscape.com 1999-06-26 18:19:33 +00:00
Родитель 29e23c42fa
Коммит 74757bed6e
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -16,6 +16,7 @@
* Reserved. * Reserved.
*/ */
#include "nsrootidl.idl"
#include "nsISupports.idl" #include "nsISupports.idl"
#include "nsIMsgFolder.idl" #include "nsIMsgFolder.idl"
#include "nsIFileSpec.idl" #include "nsIFileSpec.idl"
@ -64,8 +65,10 @@ interface nsIMsgCopyService : nsISupports {
* aSupport -- the originator of CopyMessages or CopyFileMessage; it can * aSupport -- the originator of CopyMessages or CopyFileMessage; it can
* be either a nsIMsgFolder or a nsIFileSpec * be either a nsIMsgFolder or a nsIFileSpec
* dstFolder -- the destination folder which performs the copy operation * dstFolder -- the destination folder which performs the copy operation
* result -- the result of the copy operation
*/ */
void NotifyCompletion(in nsISupports aSupport, void NotifyCompletion(in nsISupports aSupport,
in nsIMsgFolder dstFolder); in nsIMsgFolder dstFolder,
in nsresult result);
}; };