/* * DO NOT EDIT. THIS FILE IS GENERATED FROM nsILocalMailIncomingServer.idl */ #ifndef __gen_nsILocalMailIncomingServer_h__ #define __gen_nsILocalMailIncomingServer_h__ #ifndef __gen_nsISupports_h__ #include "nsISupports.h" #endif /* For IDL files that don't want to include root IDL files. */ #ifndef NS_NO_VTABLE #define NS_NO_VTABLE #endif class nsIURI; /* forward declaration */ class nsIMsgWindow; /* forward declaration */ class nsIUrlListener; /* forward declaration */ class nsIMsgFolder; /* forward declaration */ class nsIFileSpec; /* forward declaration */ /* starting interface: nsILocalMailIncomingServer */ #define NS_ILOCALMAILINCOMINGSERVER_IID_STR "ee87cc60-1dd1-11b2-b25a-ff87320f212d" #define NS_ILOCALMAILINCOMINGSERVER_IID \ {0xee87cc60, 0x1dd1, 0x11b2, \ { 0xb2, 0x5a, 0xff, 0x87, 0x32, 0x0f, 0x21, 0x2d }} class NS_NO_VTABLE nsILocalMailIncomingServer : public nsISupports { public: NS_DEFINE_STATIC_IID_ACCESSOR(NS_ILOCALMAILINCOMINGSERVER_IID) /* void createDefaultMailboxes (in nsIFileSpec path); */ NS_IMETHOD CreateDefaultMailboxes(nsIFileSpec *path) = 0; /* void setFlagsOnDefaultMailboxes (); */ NS_IMETHOD SetFlagsOnDefaultMailboxes(void) = 0; /* nsIURI getNewMail (in nsIMsgWindow aMsgWindow, in nsIUrlListener aUrlListener, in nsIMsgFolder aInbox); */ NS_IMETHOD GetNewMail(nsIMsgWindow *aMsgWindow, nsIUrlListener *aUrlListener, nsIMsgFolder *aInbox, nsIURI **_retval) = 0; }; /* Use this macro when declaring classes that implement this interface. */ #define NS_DECL_NSILOCALMAILINCOMINGSERVER \ NS_IMETHOD CreateDefaultMailboxes(nsIFileSpec *path); \ NS_IMETHOD SetFlagsOnDefaultMailboxes(void); \ NS_IMETHOD GetNewMail(nsIMsgWindow *aMsgWindow, nsIUrlListener *aUrlListener, nsIMsgFolder *aInbox, nsIURI **_retval); /* Use this macro to declare functions that forward the behavior of this interface to another object. */ #define NS_FORWARD_NSILOCALMAILINCOMINGSERVER(_to) \ NS_IMETHOD CreateDefaultMailboxes(nsIFileSpec *path) { return _to CreateDefaultMailboxes(path); } \ NS_IMETHOD SetFlagsOnDefaultMailboxes(void) { return _to SetFlagsOnDefaultMailboxes(); } \ NS_IMETHOD GetNewMail(nsIMsgWindow *aMsgWindow, nsIUrlListener *aUrlListener, nsIMsgFolder *aInbox, nsIURI **_retval) { return _to GetNewMail(aMsgWindow, aUrlListener, aInbox, _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_NSILOCALMAILINCOMINGSERVER(_to) \ NS_IMETHOD CreateDefaultMailboxes(nsIFileSpec *path) { return !_to ? NS_ERROR_NULL_POINTER : _to->CreateDefaultMailboxes(path); } \ NS_IMETHOD SetFlagsOnDefaultMailboxes(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetFlagsOnDefaultMailboxes(); } \ NS_IMETHOD GetNewMail(nsIMsgWindow *aMsgWindow, nsIUrlListener *aUrlListener, nsIMsgFolder *aInbox, nsIURI **_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetNewMail(aMsgWindow, aUrlListener, aInbox, _retval); } #if 0 /* Use the code below as a template for the implementation class for this interface. */ /* Header file */ class nsLocalMailIncomingServer : public nsILocalMailIncomingServer { public: NS_DECL_ISUPPORTS NS_DECL_NSILOCALMAILINCOMINGSERVER nsLocalMailIncomingServer(); virtual ~nsLocalMailIncomingServer(); /* additional members */ }; /* Implementation file */ NS_IMPL_ISUPPORTS1(nsLocalMailIncomingServer, nsILocalMailIncomingServer) nsLocalMailIncomingServer::nsLocalMailIncomingServer() { NS_INIT_ISUPPORTS(); /* member initializers and constructor code */ } nsLocalMailIncomingServer::~nsLocalMailIncomingServer() { /* destructor code */ } /* void createDefaultMailboxes (in nsIFileSpec path); */ NS_IMETHODIMP nsLocalMailIncomingServer::CreateDefaultMailboxes(nsIFileSpec *path) { return NS_ERROR_NOT_IMPLEMENTED; } /* void setFlagsOnDefaultMailboxes (); */ NS_IMETHODIMP nsLocalMailIncomingServer::SetFlagsOnDefaultMailboxes() { return NS_ERROR_NOT_IMPLEMENTED; } /* nsIURI getNewMail (in nsIMsgWindow aMsgWindow, in nsIUrlListener aUrlListener, in nsIMsgFolder aInbox); */ NS_IMETHODIMP nsLocalMailIncomingServer::GetNewMail(nsIMsgWindow *aMsgWindow, nsIUrlListener *aUrlListener, nsIMsgFolder *aInbox, nsIURI **_retval) { return NS_ERROR_NOT_IMPLEMENTED; } /* End of implementation class template. */ #endif #endif /* __gen_nsILocalMailIncomingServer_h__ */ .