mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
63 lines
2.2 KiB
C++
63 lines
2.2 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* 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) 1998 Netscape Communications Corporation. All Rights
|
|
* Reserved.
|
|
*/
|
|
#ifndef nsIImapExtensionSink_h__
|
|
#define nsIImapExtensionSink_h__
|
|
|
|
#include "nscore.h"
|
|
#include "nsISupports.h"
|
|
#include "nsImapCore.h"
|
|
#include "nsIImapProtocol.h"
|
|
#include "nsMsgKeyArray.h"
|
|
|
|
/* 44ede08e-e77f-11d2-af83-001083002da8 */
|
|
|
|
#define NS_IIMAPEXTENSIONSINK_IID \
|
|
{ 0x44ede08e, 0xe77f, 0x11d2, \
|
|
{ 0xaf, 0x83, 0x00, 0x10, 0x83, 0x00, 0x2d, 0xa8 } }
|
|
|
|
class nsIImapExtensionSink : public nsISupports
|
|
{
|
|
public:
|
|
static const nsIID& GetIID()
|
|
{
|
|
static nsIID iid = NS_IIMAPEXTENSIONSINK_IID;
|
|
return iid;
|
|
}
|
|
|
|
NS_IMETHOD ClearFolderRights(nsIImapProtocol* aProtocol,
|
|
nsIMAPACLRightsInfo* aclRights) = 0;
|
|
NS_IMETHOD AddFolderRights(nsIImapProtocol* aProtocol,
|
|
nsIMAPACLRightsInfo* aclRights) = 0;
|
|
NS_IMETHOD RefreshFolderRights(nsIImapProtocol* aProtocol,
|
|
nsIMAPACLRightsInfo* aclRights) = 0;
|
|
NS_IMETHOD FolderNeedsACLInitialized(nsIImapProtocol* aProtocol,
|
|
nsIMAPACLRightsInfo* aclRights) = 0;
|
|
NS_IMETHOD SetCopyResponseUid(nsIImapProtocol* aProtocol,
|
|
nsMsgKeyArray* keyArray,
|
|
const char *msgIdString,
|
|
nsISupports* copyState) = 0;
|
|
NS_IMETHOD SetAppendMsgUid(nsIImapProtocol* aProtocol,
|
|
nsMsgKey newKey,
|
|
nsISupports* copyState) = 0;
|
|
NS_IMETHOD GetMessageId(nsIImapProtocol* aProtocol,
|
|
nsCString* messageId,
|
|
nsISupports* copyState) = 0;
|
|
};
|
|
|
|
#endif
|