Your IP : 216.73.216.48
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIMimeMiscStatus.idl
*/
#ifndef __gen_nsIMimeMiscStatus_h__
#define __gen_nsIMimeMiscStatus_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
#ifndef __gen_nsrootidl_h__
#include "nsrootidl.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIChannel; /* forward declaration */
class nsIMsgMailNewsUrl; /* forward declaration */
class nsIUTF8StringEnumerator; /* forward declaration */
class nsIMsgDBHdr; /* forward declaration */
class nsIURI; /* forward declaration */
class nsIWritablePropertyBag2; /* forward declaration */
/* starting interface: nsIMimeMiscStatus */
#define NS_IMIMEMISCSTATUS_IID_STR "4644fb25-5255-11d3-82b8-444553540002"
#define NS_IMIMEMISCSTATUS_IID \
{0x4644fb25, 0x5255, 0x11d3, \
{ 0x82, 0xb8, 0x44, 0x45, 0x53, 0x54, 0x00, 0x02 }}
class NS_NO_VTABLE nsIMimeMiscStatus : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IMIMEMISCSTATUS_IID)
/* string GetWindowXULandJS (); */
NS_IMETHOD GetWindowXULandJS(char * *_retval) = 0;
/* string GetGlobalXULandJS (); */
NS_IMETHOD GetGlobalXULandJS(char * *_retval) = 0;
/* string GetIndividualXUL (in string aName, in string aHeader, in string aEmail); */
NS_IMETHOD GetIndividualXUL(const char * aName, const char * aHeader, const char * aEmail, char * *_retval) = 0;
/* long GetMiscStatus (in string aName, in string aEmail); */
NS_IMETHOD GetMiscStatus(const char * aName, const char * aEmail, int32_t *_retval) = 0;
/* string GetImageURL (in long aStatus); */
NS_IMETHOD GetImageURL(int32_t aStatus, char * *_retval) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIMimeMiscStatus, NS_IMIMEMISCSTATUS_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIMIMEMISCSTATUS \
NS_IMETHOD GetWindowXULandJS(char * *_retval) override; \
NS_IMETHOD GetGlobalXULandJS(char * *_retval) override; \
NS_IMETHOD GetIndividualXUL(const char * aName, const char * aHeader, const char * aEmail, char * *_retval) override; \
NS_IMETHOD GetMiscStatus(const char * aName, const char * aEmail, int32_t *_retval) override; \
NS_IMETHOD GetImageURL(int32_t aStatus, char * *_retval) 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_NSIMIMEMISCSTATUS \
NS_METHOD GetWindowXULandJS(char * *_retval); \
NS_METHOD GetGlobalXULandJS(char * *_retval); \
NS_METHOD GetIndividualXUL(const char * aName, const char * aHeader, const char * aEmail, char * *_retval); \
NS_METHOD GetMiscStatus(const char * aName, const char * aEmail, int32_t *_retval); \
NS_METHOD GetImageURL(int32_t aStatus, char * *_retval);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIMIMEMISCSTATUS(_to) \
NS_IMETHOD GetWindowXULandJS(char * *_retval) override { return _to GetWindowXULandJS(_retval); } \
NS_IMETHOD GetGlobalXULandJS(char * *_retval) override { return _to GetGlobalXULandJS(_retval); } \
NS_IMETHOD GetIndividualXUL(const char * aName, const char * aHeader, const char * aEmail, char * *_retval) override { return _to GetIndividualXUL(aName, aHeader, aEmail, _retval); } \
NS_IMETHOD GetMiscStatus(const char * aName, const char * aEmail, int32_t *_retval) override { return _to GetMiscStatus(aName, aEmail, _retval); } \
NS_IMETHOD GetImageURL(int32_t aStatus, char * *_retval) override { return _to GetImageURL(aStatus, _retval); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIMIMEMISCSTATUS(_to) \
NS_IMETHOD GetWindowXULandJS(char * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetWindowXULandJS(_retval); } \
NS_IMETHOD GetGlobalXULandJS(char * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetGlobalXULandJS(_retval); } \
NS_IMETHOD GetIndividualXUL(const char * aName, const char * aHeader, const char * aEmail, char * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIndividualXUL(aName, aHeader, aEmail, _retval); } \
NS_IMETHOD GetMiscStatus(const char * aName, const char * aEmail, int32_t *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMiscStatus(aName, aEmail, _retval); } \
NS_IMETHOD GetImageURL(int32_t aStatus, char * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetImageURL(aStatus, _retval); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsMimeMiscStatus : public nsIMimeMiscStatus
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIMIMEMISCSTATUS
nsMimeMiscStatus();
private:
~nsMimeMiscStatus();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsMimeMiscStatus, nsIMimeMiscStatus)
nsMimeMiscStatus::nsMimeMiscStatus()
{
/* member initializers and constructor code */
}
nsMimeMiscStatus::~nsMimeMiscStatus()
{
/* destructor code */
}
/* string GetWindowXULandJS (); */
NS_IMETHODIMP nsMimeMiscStatus::GetWindowXULandJS(char * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* string GetGlobalXULandJS (); */
NS_IMETHODIMP nsMimeMiscStatus::GetGlobalXULandJS(char * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* string GetIndividualXUL (in string aName, in string aHeader, in string aEmail); */
NS_IMETHODIMP nsMimeMiscStatus::GetIndividualXUL(const char * aName, const char * aHeader, const char * aEmail, char * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* long GetMiscStatus (in string aName, in string aEmail); */
NS_IMETHODIMP nsMimeMiscStatus::GetMiscStatus(const char * aName, const char * aEmail, int32_t *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* string GetImageURL (in long aStatus); */
NS_IMETHODIMP nsMimeMiscStatus::GetImageURL(int32_t aStatus, char * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
/* starting interface: nsIMsgHeaderSink */
#define NS_IMSGHEADERSINK_IID_STR "e0e821f0-cecf-4cb3-be5b-ee58b6868343"
#define NS_IMSGHEADERSINK_IID \
{0xe0e821f0, 0xcecf, 0x4cb3, \
{ 0xbe, 0x5b, 0xee, 0x58, 0xb6, 0x86, 0x83, 0x43 }}
class NS_NO_VTABLE nsIMsgHeaderSink : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IMSGHEADERSINK_IID)
/* void processHeaders (in nsIUTF8StringEnumerator aHeaderNames, in nsIUTF8StringEnumerator aHeaderValues, in boolean dontCollectAddress); */
NS_IMETHOD ProcessHeaders(nsIUTF8StringEnumerator *aHeaderNames, nsIUTF8StringEnumerator *aHeaderValues, bool dontCollectAddress) = 0;
/* void handleAttachment (in string contentType, in string url, in wstring displayName, in string uri, in boolean aNotDownloaded); */
NS_IMETHOD HandleAttachment(const char * contentType, const char * url, const char16_t * displayName, const char * uri, bool aNotDownloaded) = 0;
/* void addAttachmentField (in string field, in string value); */
NS_IMETHOD AddAttachmentField(const char * field, const char * value) = 0;
/* void onEndAllAttachments (); */
NS_IMETHOD OnEndAllAttachments(void) = 0;
/* void onEndMsgHeaders (in nsIMsgMailNewsUrl url); */
NS_IMETHOD OnEndMsgHeaders(nsIMsgMailNewsUrl *url) = 0;
/* void onEndMsgDownload (in nsIMsgMailNewsUrl url); */
NS_IMETHOD OnEndMsgDownload(nsIMsgMailNewsUrl *url) = 0;
/* attribute nsISupports securityInfo; */
NS_IMETHOD GetSecurityInfo(nsISupports * *aSecurityInfo) = 0;
NS_IMETHOD SetSecurityInfo(nsISupports *aSecurityInfo) = 0;
/* void onMsgHasRemoteContent (in nsIMsgDBHdr aMsgHdr, in nsIURI aContentURI); */
NS_IMETHOD OnMsgHasRemoteContent(nsIMsgDBHdr *aMsgHdr, nsIURI *aContentURI) = 0;
/* readonly attribute nsIMsgDBHdr dummyMsgHeader; */
NS_IMETHOD GetDummyMsgHeader(nsIMsgDBHdr * *aDummyMsgHeader) = 0;
/* readonly attribute nsIWritablePropertyBag2 properties; */
NS_IMETHOD GetProperties(nsIWritablePropertyBag2 * *aProperties) = 0;
/* void resetProperties (); */
NS_IMETHOD ResetProperties(void) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIMsgHeaderSink, NS_IMSGHEADERSINK_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIMSGHEADERSINK \
NS_IMETHOD ProcessHeaders(nsIUTF8StringEnumerator *aHeaderNames, nsIUTF8StringEnumerator *aHeaderValues, bool dontCollectAddress) override; \
NS_IMETHOD HandleAttachment(const char * contentType, const char * url, const char16_t * displayName, const char * uri, bool aNotDownloaded) override; \
NS_IMETHOD AddAttachmentField(const char * field, const char * value) override; \
NS_IMETHOD OnEndAllAttachments(void) override; \
NS_IMETHOD OnEndMsgHeaders(nsIMsgMailNewsUrl *url) override; \
NS_IMETHOD OnEndMsgDownload(nsIMsgMailNewsUrl *url) override; \
NS_IMETHOD GetSecurityInfo(nsISupports * *aSecurityInfo) override; \
NS_IMETHOD SetSecurityInfo(nsISupports *aSecurityInfo) override; \
NS_IMETHOD OnMsgHasRemoteContent(nsIMsgDBHdr *aMsgHdr, nsIURI *aContentURI) override; \
NS_IMETHOD GetDummyMsgHeader(nsIMsgDBHdr * *aDummyMsgHeader) override; \
NS_IMETHOD GetProperties(nsIWritablePropertyBag2 * *aProperties) override; \
NS_IMETHOD ResetProperties(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_NSIMSGHEADERSINK \
NS_METHOD ProcessHeaders(nsIUTF8StringEnumerator *aHeaderNames, nsIUTF8StringEnumerator *aHeaderValues, bool dontCollectAddress); \
NS_METHOD HandleAttachment(const char * contentType, const char * url, const char16_t * displayName, const char * uri, bool aNotDownloaded); \
NS_METHOD AddAttachmentField(const char * field, const char * value); \
NS_METHOD OnEndAllAttachments(void); \
NS_METHOD OnEndMsgHeaders(nsIMsgMailNewsUrl *url); \
NS_METHOD OnEndMsgDownload(nsIMsgMailNewsUrl *url); \
NS_METHOD GetSecurityInfo(nsISupports * *aSecurityInfo); \
NS_METHOD SetSecurityInfo(nsISupports *aSecurityInfo); \
NS_METHOD OnMsgHasRemoteContent(nsIMsgDBHdr *aMsgHdr, nsIURI *aContentURI); \
NS_METHOD GetDummyMsgHeader(nsIMsgDBHdr * *aDummyMsgHeader); \
NS_METHOD GetProperties(nsIWritablePropertyBag2 * *aProperties); \
NS_METHOD ResetProperties(void);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIMSGHEADERSINK(_to) \
NS_IMETHOD ProcessHeaders(nsIUTF8StringEnumerator *aHeaderNames, nsIUTF8StringEnumerator *aHeaderValues, bool dontCollectAddress) override { return _to ProcessHeaders(aHeaderNames, aHeaderValues, dontCollectAddress); } \
NS_IMETHOD HandleAttachment(const char * contentType, const char * url, const char16_t * displayName, const char * uri, bool aNotDownloaded) override { return _to HandleAttachment(contentType, url, displayName, uri, aNotDownloaded); } \
NS_IMETHOD AddAttachmentField(const char * field, const char * value) override { return _to AddAttachmentField(field, value); } \
NS_IMETHOD OnEndAllAttachments(void) override { return _to OnEndAllAttachments(); } \
NS_IMETHOD OnEndMsgHeaders(nsIMsgMailNewsUrl *url) override { return _to OnEndMsgHeaders(url); } \
NS_IMETHOD OnEndMsgDownload(nsIMsgMailNewsUrl *url) override { return _to OnEndMsgDownload(url); } \
NS_IMETHOD GetSecurityInfo(nsISupports * *aSecurityInfo) override { return _to GetSecurityInfo(aSecurityInfo); } \
NS_IMETHOD SetSecurityInfo(nsISupports *aSecurityInfo) override { return _to SetSecurityInfo(aSecurityInfo); } \
NS_IMETHOD OnMsgHasRemoteContent(nsIMsgDBHdr *aMsgHdr, nsIURI *aContentURI) override { return _to OnMsgHasRemoteContent(aMsgHdr, aContentURI); } \
NS_IMETHOD GetDummyMsgHeader(nsIMsgDBHdr * *aDummyMsgHeader) override { return _to GetDummyMsgHeader(aDummyMsgHeader); } \
NS_IMETHOD GetProperties(nsIWritablePropertyBag2 * *aProperties) override { return _to GetProperties(aProperties); } \
NS_IMETHOD ResetProperties(void) override { return _to ResetProperties(); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIMSGHEADERSINK(_to) \
NS_IMETHOD ProcessHeaders(nsIUTF8StringEnumerator *aHeaderNames, nsIUTF8StringEnumerator *aHeaderValues, bool dontCollectAddress) override { return !_to ? NS_ERROR_NULL_POINTER : _to->ProcessHeaders(aHeaderNames, aHeaderValues, dontCollectAddress); } \
NS_IMETHOD HandleAttachment(const char * contentType, const char * url, const char16_t * displayName, const char * uri, bool aNotDownloaded) override { return !_to ? NS_ERROR_NULL_POINTER : _to->HandleAttachment(contentType, url, displayName, uri, aNotDownloaded); } \
NS_IMETHOD AddAttachmentField(const char * field, const char * value) override { return !_to ? NS_ERROR_NULL_POINTER : _to->AddAttachmentField(field, value); } \
NS_IMETHOD OnEndAllAttachments(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->OnEndAllAttachments(); } \
NS_IMETHOD OnEndMsgHeaders(nsIMsgMailNewsUrl *url) override { return !_to ? NS_ERROR_NULL_POINTER : _to->OnEndMsgHeaders(url); } \
NS_IMETHOD OnEndMsgDownload(nsIMsgMailNewsUrl *url) override { return !_to ? NS_ERROR_NULL_POINTER : _to->OnEndMsgDownload(url); } \
NS_IMETHOD GetSecurityInfo(nsISupports * *aSecurityInfo) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSecurityInfo(aSecurityInfo); } \
NS_IMETHOD SetSecurityInfo(nsISupports *aSecurityInfo) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetSecurityInfo(aSecurityInfo); } \
NS_IMETHOD OnMsgHasRemoteContent(nsIMsgDBHdr *aMsgHdr, nsIURI *aContentURI) override { return !_to ? NS_ERROR_NULL_POINTER : _to->OnMsgHasRemoteContent(aMsgHdr, aContentURI); } \
NS_IMETHOD GetDummyMsgHeader(nsIMsgDBHdr * *aDummyMsgHeader) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDummyMsgHeader(aDummyMsgHeader); } \
NS_IMETHOD GetProperties(nsIWritablePropertyBag2 * *aProperties) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetProperties(aProperties); } \
NS_IMETHOD ResetProperties(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->ResetProperties(); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsMsgHeaderSink : public nsIMsgHeaderSink
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIMSGHEADERSINK
nsMsgHeaderSink();
private:
~nsMsgHeaderSink();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsMsgHeaderSink, nsIMsgHeaderSink)
nsMsgHeaderSink::nsMsgHeaderSink()
{
/* member initializers and constructor code */
}
nsMsgHeaderSink::~nsMsgHeaderSink()
{
/* destructor code */
}
/* void processHeaders (in nsIUTF8StringEnumerator aHeaderNames, in nsIUTF8StringEnumerator aHeaderValues, in boolean dontCollectAddress); */
NS_IMETHODIMP nsMsgHeaderSink::ProcessHeaders(nsIUTF8StringEnumerator *aHeaderNames, nsIUTF8StringEnumerator *aHeaderValues, bool dontCollectAddress)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void handleAttachment (in string contentType, in string url, in wstring displayName, in string uri, in boolean aNotDownloaded); */
NS_IMETHODIMP nsMsgHeaderSink::HandleAttachment(const char * contentType, const char * url, const char16_t * displayName, const char * uri, bool aNotDownloaded)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void addAttachmentField (in string field, in string value); */
NS_IMETHODIMP nsMsgHeaderSink::AddAttachmentField(const char * field, const char * value)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void onEndAllAttachments (); */
NS_IMETHODIMP nsMsgHeaderSink::OnEndAllAttachments()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void onEndMsgHeaders (in nsIMsgMailNewsUrl url); */
NS_IMETHODIMP nsMsgHeaderSink::OnEndMsgHeaders(nsIMsgMailNewsUrl *url)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void onEndMsgDownload (in nsIMsgMailNewsUrl url); */
NS_IMETHODIMP nsMsgHeaderSink::OnEndMsgDownload(nsIMsgMailNewsUrl *url)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute nsISupports securityInfo; */
NS_IMETHODIMP nsMsgHeaderSink::GetSecurityInfo(nsISupports * *aSecurityInfo)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsMsgHeaderSink::SetSecurityInfo(nsISupports *aSecurityInfo)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void onMsgHasRemoteContent (in nsIMsgDBHdr aMsgHdr, in nsIURI aContentURI); */
NS_IMETHODIMP nsMsgHeaderSink::OnMsgHasRemoteContent(nsIMsgDBHdr *aMsgHdr, nsIURI *aContentURI)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIMsgDBHdr dummyMsgHeader; */
NS_IMETHODIMP nsMsgHeaderSink::GetDummyMsgHeader(nsIMsgDBHdr * *aDummyMsgHeader)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIWritablePropertyBag2 properties; */
NS_IMETHODIMP nsMsgHeaderSink::GetProperties(nsIWritablePropertyBag2 * *aProperties)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void resetProperties (); */
NS_IMETHODIMP nsMsgHeaderSink::ResetProperties()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIMimeMiscStatus_h__ */