Your IP : 216.73.216.48
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIMsgMdnGenerator.idl
*/
#ifndef __gen_nsIMsgMdnGenerator_h__
#define __gen_nsIMsgMdnGenerator_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
#ifndef __gen_MailNewsTypes2_h__
#include "MailNewsTypes2.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIMsgWindow; /* forward declaration */
class nsIMsgFolder; /* forward declaration */
class nsIMimeHeaders; /* forward declaration */
typedef int32_t EDisposeType;
typedef int32_t ReceiptHdrType;
typedef int32_t MDNIncorporateType;
#define NS_MSGMDNGENERATOR_CONTRACTID \
"@mozilla.org/messenger-mdn/generator;1"
#define NS_MSGMDNGENERATOR_CID \
{ /* ec917b13-8f73-4d4d-9146-d7f7aafe9076 */ \
0xec917b13, 0x8f73, 0x4d4d, \
{ 0x91, 0x46, 0xd7, 0xf7, 0xaa, 0xfe, 0x90, 0x76 }}
/* starting interface: nsIMsgMdnGenerator */
#define NS_IMSGMDNGENERATOR_IID_STR "440ea3de-daca-4886-9875-84e6cd7d7927"
#define NS_IMSGMDNGENERATOR_IID \
{0x440ea3de, 0xdaca, 0x4886, \
{ 0x98, 0x75, 0x84, 0xe6, 0xcd, 0x7d, 0x79, 0x27 }}
class NS_NO_VTABLE nsIMsgMdnGenerator : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IMSGMDNGENERATOR_IID)
enum {
eDisplayed = 0,
eDispatched = 1,
eProcessed = 2,
eDeleted = 3,
eDenied = 4,
eFailed = 5,
eDntType = 0,
eRrtType = 1,
eDntRrtType = 2,
eIncorporateInbox = 0,
eIncorporateSent = 1
};
/* boolean process (in EDisposeType eType, in nsIMsgWindow aWindow, in nsIMsgFolder folder, in nsMsgKey key, in nsIMimeHeaders headers, in boolean autoAction); */
NS_IMETHOD Process(EDisposeType eType, nsIMsgWindow *aWindow, nsIMsgFolder *folder, nsMsgKey key, nsIMimeHeaders *headers, bool autoAction, bool *_retval) = 0;
/* void userAgreed (); */
NS_IMETHOD UserAgreed(void) = 0;
/* void userDeclined (); */
NS_IMETHOD UserDeclined(void) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIMsgMdnGenerator, NS_IMSGMDNGENERATOR_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIMSGMDNGENERATOR \
NS_IMETHOD Process(EDisposeType eType, nsIMsgWindow *aWindow, nsIMsgFolder *folder, nsMsgKey key, nsIMimeHeaders *headers, bool autoAction, bool *_retval) override; \
NS_IMETHOD UserAgreed(void) override; \
NS_IMETHOD UserDeclined(void) override;
/* Use this macro when declaring the members of this interface when the
class doesn't implement the interface. This is useful for forwarding. */
#define NS_DECL_NON_VIRTUAL_NSIMSGMDNGENERATOR \
NS_METHOD Process(EDisposeType eType, nsIMsgWindow *aWindow, nsIMsgFolder *folder, nsMsgKey key, nsIMimeHeaders *headers, bool autoAction, bool *_retval); \
NS_METHOD UserAgreed(void); \
NS_METHOD UserDeclined(void);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIMSGMDNGENERATOR(_to) \
NS_IMETHOD Process(EDisposeType eType, nsIMsgWindow *aWindow, nsIMsgFolder *folder, nsMsgKey key, nsIMimeHeaders *headers, bool autoAction, bool *_retval) override { return _to Process(eType, aWindow, folder, key, headers, autoAction, _retval); } \
NS_IMETHOD UserAgreed(void) override { return _to UserAgreed(); } \
NS_IMETHOD UserDeclined(void) override { return _to UserDeclined(); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIMSGMDNGENERATOR(_to) \
NS_IMETHOD Process(EDisposeType eType, nsIMsgWindow *aWindow, nsIMsgFolder *folder, nsMsgKey key, nsIMimeHeaders *headers, bool autoAction, bool *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Process(eType, aWindow, folder, key, headers, autoAction, _retval); } \
NS_IMETHOD UserAgreed(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->UserAgreed(); } \
NS_IMETHOD UserDeclined(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->UserDeclined(); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsMsgMdnGenerator : public nsIMsgMdnGenerator
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIMSGMDNGENERATOR
nsMsgMdnGenerator();
private:
~nsMsgMdnGenerator();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsMsgMdnGenerator, nsIMsgMdnGenerator)
nsMsgMdnGenerator::nsMsgMdnGenerator()
{
/* member initializers and constructor code */
}
nsMsgMdnGenerator::~nsMsgMdnGenerator()
{
/* destructor code */
}
/* boolean process (in EDisposeType eType, in nsIMsgWindow aWindow, in nsIMsgFolder folder, in nsMsgKey key, in nsIMimeHeaders headers, in boolean autoAction); */
NS_IMETHODIMP nsMsgMdnGenerator::Process(EDisposeType eType, nsIMsgWindow *aWindow, nsIMsgFolder *folder, nsMsgKey key, nsIMimeHeaders *headers, bool autoAction, bool *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void userAgreed (); */
NS_IMETHODIMP nsMsgMdnGenerator::UserAgreed()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void userDeclined (); */
NS_IMETHODIMP nsMsgMdnGenerator::UserDeclined()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIMsgMdnGenerator_h__ */