зеркало из https://github.com/mozilla/pjs.git
The compose.dll has been merged into msgcompose.dll in order to have the auto appcore registration working.
This commit is contained in:
Родитель
ff4d754ae9
Коммит
1f9181f6fb
|
@ -78,30 +78,31 @@ DLL=.\$(OBJDIR)\$(DLLNAME).dll
|
||||||
#//------------------------------------------------------------------------
|
#//------------------------------------------------------------------------
|
||||||
LCFLAGS=-DNETSCAPE
|
LCFLAGS=-DNETSCAPE
|
||||||
|
|
||||||
MSGLIBS= \
|
|
||||||
$(NULL)
|
|
||||||
|
|
||||||
# These are the libraries we need to link with to create the dll
|
# These are the libraries we need to link with to create the dll
|
||||||
LLIBS= \
|
LLIBS= \
|
||||||
$(LLIBS) \
|
$(LLIBS) \
|
||||||
$(DIST)\lib\xpcom32.lib \
|
$(DIST)\lib\xpcom32.lib \
|
||||||
|
$(DIST)\lib\raptorbase.lib \
|
||||||
$(DIST)\lib\xplib.lib \
|
$(DIST)\lib\xplib.lib \
|
||||||
$(DIST)\lib\libplc21.lib \
|
$(DIST)\lib\libplc21.lib \
|
||||||
$(DIST)\lib\js32$(VERSION_NUMBER).lib \
|
$(DIST)\lib\js32$(VERSION_NUMBER).lib \
|
||||||
$(DIST)\lib\msgcore.lib \
|
$(DIST)\lib\msgcore.lib \
|
||||||
$(DIST)\lib\msgcompose.lib \
|
$(DIST)\lib\msgcompose.lib \
|
||||||
$(DIST)\lib\raptorbase.lib \
|
|
||||||
$(DIST)\lib\secfreenav32.lib \
|
$(DIST)\lib\secfreenav32.lib \
|
||||||
|
$(DIST)\lib\appcores.lib \
|
||||||
|
$(DIST)\lib\netlib.lib \
|
||||||
$(LIBNSPR) \
|
$(LIBNSPR) \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
LINCS=$(LINCS) -I, \
|
LINCS=$(LINCS) -I, \
|
||||||
|
-I$(XPDIST)\msg \
|
||||||
-I$(PUBLIC)\xpcom \
|
-I$(PUBLIC)\xpcom \
|
||||||
-I$(PUBLIC)\js \
|
-I$(PUBLIC)\js \
|
||||||
-I$(PUBLIC)\mailnews \
|
-I$(PUBLIC)\mailnews \
|
||||||
-I$(PUBLIC)\pref \
|
-I$(PUBLIC)\pref \
|
||||||
-I$(PUBLIC)\raptor \
|
-I$(PUBLIC)\raptor \
|
||||||
-I$(XPDIST)\msg \
|
-I$(PUBLIC)\dom \
|
||||||
|
-I$(PUBLIC)\appcores \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
#//------------------------------------------------------------------------
|
#//------------------------------------------------------------------------
|
||||||
|
|
|
@ -26,6 +26,8 @@
|
||||||
/* Include all of the interfaces our factory can generate components for */
|
/* Include all of the interfaces our factory can generate components for */
|
||||||
#include "nsISmtpService.h"
|
#include "nsISmtpService.h"
|
||||||
#include "nsSmtpService.h"
|
#include "nsSmtpService.h"
|
||||||
|
#include "nsComposer.h"
|
||||||
|
#include "nsComposeAppCore.h"
|
||||||
#include "nsMsgComposeFact.h"
|
#include "nsMsgComposeFact.h"
|
||||||
#include "nsMsgCompFieldsFact.h"
|
#include "nsMsgCompFieldsFact.h"
|
||||||
#include "nsMsgSendFact.h"
|
#include "nsMsgSendFact.h"
|
||||||
|
@ -39,6 +41,11 @@ static NS_DEFINE_CID(kCMsgComposeCID, NS_MSGCOMPOSE_CID);
|
||||||
static NS_DEFINE_CID(kCMsgCompFieldsCID, NS_MSGCOMPFIELDS_CID);
|
static NS_DEFINE_CID(kCMsgCompFieldsCID, NS_MSGCOMPFIELDS_CID);
|
||||||
static NS_DEFINE_CID(kCMsgSendCID, NS_MSGSEND_CID);
|
static NS_DEFINE_CID(kCMsgSendCID, NS_MSGSEND_CID);
|
||||||
static NS_DEFINE_CID(kCSmtpServiceCID, NS_SMTPSERVICE_CID);
|
static NS_DEFINE_CID(kCSmtpServiceCID, NS_SMTPSERVICE_CID);
|
||||||
|
static NS_DEFINE_CID(kCComposeAppCoreCID, NS_COMPOSEAPPCORE_CID);
|
||||||
|
static NS_DEFINE_CID(kCComposerBootstrapCID, NS_COMPOSERBOOTSTRAP_CID);
|
||||||
|
static NS_DEFINE_CID(kCComposerCID, NS_COMPOSER_CID);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
|
@ -52,7 +59,10 @@ public:
|
||||||
// nsISupports methods
|
// nsISupports methods
|
||||||
NS_DECL_ISUPPORTS
|
NS_DECL_ISUPPORTS
|
||||||
|
|
||||||
nsMsgComposeFactory(const nsCID &aClass);
|
nsMsgComposeFactory(const nsCID &aClass,
|
||||||
|
const char* aClassName,
|
||||||
|
const char* aProgID,
|
||||||
|
nsISupports*);
|
||||||
|
|
||||||
// nsIFactory methods
|
// nsIFactory methods
|
||||||
NS_IMETHOD CreateInstance(nsISupports *aOuter, const nsIID &aIID, void **aResult);
|
NS_IMETHOD CreateInstance(nsISupports *aOuter, const nsIID &aIID, void **aResult);
|
||||||
|
@ -62,18 +72,34 @@ public:
|
||||||
virtual ~nsMsgComposeFactory();
|
virtual ~nsMsgComposeFactory();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
nsCID mClassID;
|
nsCID mClassID;
|
||||||
|
char* mClassName;
|
||||||
|
char* mProgID;
|
||||||
|
nsIServiceManager* mServiceManager;
|
||||||
};
|
};
|
||||||
|
|
||||||
nsMsgComposeFactory::nsMsgComposeFactory(const nsCID &aClass)
|
nsMsgComposeFactory::nsMsgComposeFactory(const nsCID &aClass,
|
||||||
|
const char* aClassName,
|
||||||
|
const char* aProgID,
|
||||||
|
nsISupports *compMgrSupports)
|
||||||
|
: mClassID(aClass),
|
||||||
|
mClassName(nsCRT::strdup(aClassName)),
|
||||||
|
mProgID(nsCRT::strdup(aProgID))
|
||||||
{
|
{
|
||||||
NS_INIT_REFCNT();
|
NS_INIT_REFCNT();
|
||||||
mClassID = aClass;
|
|
||||||
|
// store a copy of the
|
||||||
|
compMgrSupports->QueryInterface(nsIServiceManager::GetIID(),
|
||||||
|
(void **)&mServiceManager);
|
||||||
}
|
}
|
||||||
|
|
||||||
nsMsgComposeFactory::~nsMsgComposeFactory()
|
nsMsgComposeFactory::~nsMsgComposeFactory()
|
||||||
{
|
{
|
||||||
NS_ASSERTION(mRefCnt == 0, "non-zero refcnt at destruction");
|
NS_ASSERTION(mRefCnt == 0, "non-zero refcnt at destruction");
|
||||||
|
|
||||||
|
NS_IF_RELEASE(mServiceManager);
|
||||||
|
delete[] mClassName;
|
||||||
|
delete[] mProgID;
|
||||||
}
|
}
|
||||||
|
|
||||||
nsresult nsMsgComposeFactory::QueryInterface(const nsIID &aIID, void **aResult)
|
nsresult nsMsgComposeFactory::QueryInterface(const nsIID &aIID, void **aResult)
|
||||||
|
@ -121,39 +147,49 @@ nsresult nsMsgComposeFactory::CreateInstance(nsISupports *aOuter, const nsIID &a
|
||||||
// So, if you add a component here and it doesn't ref count when you create it then you might
|
// So, if you add a component here and it doesn't ref count when you create it then you might
|
||||||
// have a problem....
|
// have a problem....
|
||||||
|
|
||||||
if (mClassID.Equals(kCSmtpServiceCID))
|
if (mClassID.Equals(kCSmtpServiceCID)) {
|
||||||
{
|
|
||||||
nsSmtpService * smtpService = new nsSmtpService();
|
nsSmtpService * smtpService = new nsSmtpService();
|
||||||
// okay now turn around and give inst a handle on it....
|
// okay now turn around and give inst a handle on it....
|
||||||
smtpService->QueryInterface(kISupportsIID, (void **) &inst);
|
smtpService->QueryInterface(kISupportsIID, (void **) &inst);
|
||||||
}
|
}
|
||||||
// do they want an Message Compose interface ?
|
// do they want an Message Compose interface ?
|
||||||
if (mClassID.Equals(kCMsgComposeCID))
|
else if (mClassID.Equals(kCMsgComposeCID)) {
|
||||||
{
|
|
||||||
res = NS_NewMsgCompose((nsIMsgCompose **) &inst);
|
res = NS_NewMsgCompose((nsIMsgCompose **) &inst);
|
||||||
if (res != NS_OK) // was there a problem creating the object ?
|
if (res != NS_OK) return res;
|
||||||
return res;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// do they want an Message Compose Fields interface ?
|
// do they want an Message Compose Fields interface ?
|
||||||
if (mClassID.Equals(kCMsgCompFieldsCID))
|
else if (mClassID.Equals(kCMsgCompFieldsCID)) {
|
||||||
{
|
|
||||||
res = NS_NewMsgCompFields((nsIMsgCompFields **) &inst);
|
res = NS_NewMsgCompFields((nsIMsgCompFields **) &inst);
|
||||||
if (res != NS_OK) // was there a problem creating the object ?
|
if (res != NS_OK) return res;
|
||||||
return res;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// do they want an Message Send interface ?
|
// do they want an Message Send interface ?
|
||||||
if (mClassID.Equals(kCMsgSendCID))
|
else if (mClassID.Equals(kCMsgSendCID)) {
|
||||||
{
|
|
||||||
res = NS_NewMsgSend((nsIMsgSend **) &inst);
|
res = NS_NewMsgSend((nsIMsgSend **) &inst);
|
||||||
if (res != NS_OK) // was there a problem creating the object ?
|
if (res != NS_OK) return res;
|
||||||
return res;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// End of checking the interface ID code....
|
// do they want an Compose AppCore interface ?
|
||||||
if (inst)
|
else if (mClassID.Equals(kCComposeAppCoreCID)) {
|
||||||
|
res = NS_NewComposeAppCore((nsIDOMComposeAppCore **)&inst);
|
||||||
|
if (res != NS_OK) return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
else if (mClassID.Equals(kCComposerBootstrapCID))
|
||||||
{
|
{
|
||||||
|
res = NS_NewComposerBootstrap((nsIAppShellService**)&inst, mServiceManager);
|
||||||
|
if (NS_FAILED(res)) return res;
|
||||||
|
}
|
||||||
|
else if (mClassID.Equals(kCComposerCID))
|
||||||
|
{
|
||||||
|
res = NS_NewComposer((nsIComposer**)&inst);
|
||||||
|
if (NS_FAILED(res)) return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// End of checking the interface ID code....
|
||||||
|
if (inst) {
|
||||||
// so we now have the class that supports the desired interface...we need to turn around and
|
// so we now have the class that supports the desired interface...we need to turn around and
|
||||||
// query for our desired interface.....
|
// query for our desired interface.....
|
||||||
res = inst->QueryInterface(aIID, aResult);
|
res = inst->QueryInterface(aIID, aResult);
|
||||||
|
@ -187,14 +223,12 @@ extern "C" NS_EXPORT nsresult NSGetFactory(nsISupports* aServMgr,
|
||||||
if (nsnull == aFactory)
|
if (nsnull == aFactory)
|
||||||
return NS_ERROR_NULL_POINTER;
|
return NS_ERROR_NULL_POINTER;
|
||||||
|
|
||||||
// If we decide to implement multiple factories in the msg.dll, then we need to check the class
|
*aFactory = new nsMsgComposeFactory(aClass, aClassName, aProgID, aServMgr);
|
||||||
// type here and create the appropriate factory instead of always creating a nsMsgComposeFactory...
|
|
||||||
*aFactory = new nsMsgComposeFactory(aClass);
|
|
||||||
|
|
||||||
if (aFactory)
|
if (aFactory)
|
||||||
return (*aFactory)->QueryInterface(nsIFactory::GetIID(), (void**)aFactory); // they want a Factory Interface so give it to them
|
return (*aFactory)->QueryInterface(nsIFactory::GetIID(),
|
||||||
else
|
(void**)aFactory);
|
||||||
return NS_ERROR_OUT_OF_MEMORY;
|
else
|
||||||
|
return NS_ERROR_OUT_OF_MEMORY;
|
||||||
}
|
}
|
||||||
|
|
||||||
extern "C" NS_EXPORT PRBool NSCanUnload(nsISupports* aServMgr)
|
extern "C" NS_EXPORT PRBool NSCanUnload(nsISupports* aServMgr)
|
||||||
|
@ -204,24 +238,62 @@ extern "C" NS_EXPORT PRBool NSCanUnload(nsISupports* aServMgr)
|
||||||
|
|
||||||
extern "C" NS_EXPORT nsresult NSRegisterSelf(nsISupports* aServMgr, const char* path)
|
extern "C" NS_EXPORT nsresult NSRegisterSelf(nsISupports* aServMgr, const char* path)
|
||||||
{
|
{
|
||||||
nsresult rv;
|
nsresult rv;
|
||||||
|
|
||||||
nsCOMPtr<nsIServiceManager> servMgr(do_QueryInterface(aServMgr, &rv));
|
nsCOMPtr<nsIServiceManager> servMgr(do_QueryInterface(aServMgr, &rv));
|
||||||
if (NS_FAILED(rv)) return rv;
|
if (NS_FAILED(rv)) return rv;
|
||||||
|
|
||||||
nsIComponentManager* compMgr;
|
nsIComponentManager* compMgr;
|
||||||
rv = servMgr->GetService(kComponentManagerCID,
|
rv = servMgr->GetService(kComponentManagerCID,
|
||||||
nsIComponentManager::GetIID(),
|
nsIComponentManager::GetIID(),
|
||||||
(nsISupports**)&compMgr);
|
(nsISupports**)&compMgr);
|
||||||
if (NS_FAILED(rv)) return rv;
|
if (NS_FAILED(rv)) return rv;
|
||||||
|
|
||||||
rv = compMgr->RegisterComponent(kCMsgComposeCID, NULL, NULL, path, PR_TRUE, PR_TRUE);
|
// register the message compose factory
|
||||||
if (NS_FAILED(rv)) goto done;
|
rv = compMgr->RegisterComponent(kCSmtpServiceCID,
|
||||||
rv = compMgr->RegisterComponent(kCSmtpServiceCID, NULL, NULL, path, PR_TRUE, PR_TRUE);
|
"SMTP Service", nsnull,
|
||||||
if (NS_FAILED(rv)) goto done;
|
path, PR_TRUE, PR_TRUE);
|
||||||
rv = compMgr->RegisterComponent(kCMsgCompFieldsCID, NULL, NULL, path, PR_TRUE, PR_TRUE);
|
if (NS_FAILED(rv)) goto done;
|
||||||
if (NS_FAILED(rv)) goto done;
|
|
||||||
rv = compMgr->RegisterComponent(kCMsgSendCID, NULL, NULL, path, PR_TRUE, PR_TRUE);
|
rv = compMgr->RegisterComponent(kCMsgCompFieldsCID,
|
||||||
|
"Compose Fields",
|
||||||
|
nsnull, path, PR_TRUE, PR_TRUE);
|
||||||
|
if (NS_FAILED(rv)) goto done;
|
||||||
|
|
||||||
|
rv = compMgr->RegisterComponent(kCMsgSendCID,
|
||||||
|
"Message Send",
|
||||||
|
nsnull, path, PR_TRUE, PR_TRUE);
|
||||||
|
if (NS_FAILED(rv)) goto done;
|
||||||
|
|
||||||
|
rv = compMgr->RegisterComponent(kCMsgComposeCID,
|
||||||
|
"Message Compose",
|
||||||
|
nsnull,
|
||||||
|
path, PR_TRUE, PR_TRUE);
|
||||||
|
if (NS_FAILED(rv)) goto done;
|
||||||
|
|
||||||
|
rv = compMgr->RegisterComponent(kCComposerCID,
|
||||||
|
"Message Composer",
|
||||||
|
"component://netscape/composer/application",
|
||||||
|
path, PR_TRUE, PR_TRUE);
|
||||||
|
if (NS_FAILED(rv)) goto done;
|
||||||
|
|
||||||
|
rv = compMgr->RegisterComponent(kCComposerBootstrapCID,
|
||||||
|
"Netscape Composer Bootstrapper",
|
||||||
|
"component://netscape/composer",
|
||||||
|
path,
|
||||||
|
PR_TRUE, PR_TRUE);
|
||||||
|
if (NS_FAILED(rv)) goto done;
|
||||||
|
|
||||||
|
rv = compMgr->RegisterComponent(kCComposeAppCoreCID,
|
||||||
|
"Composer AppCore",
|
||||||
|
"component://netscape/appcores/composer",
|
||||||
|
path,
|
||||||
|
PR_TRUE, PR_TRUE);
|
||||||
|
if (NS_FAILED(rv)) goto done;
|
||||||
|
|
||||||
|
#ifdef NS_DEBUG
|
||||||
|
printf("composer registering from %s\n",path);
|
||||||
|
#endif
|
||||||
|
|
||||||
done:
|
done:
|
||||||
(void)servMgr->ReleaseService(kComponentManagerCID, compMgr);
|
(void)servMgr->ReleaseService(kComponentManagerCID, compMgr);
|
||||||
|
@ -231,26 +303,39 @@ extern "C" NS_EXPORT nsresult NSRegisterSelf(nsISupports* aServMgr, const char*
|
||||||
extern "C" NS_EXPORT nsresult
|
extern "C" NS_EXPORT nsresult
|
||||||
NSUnregisterSelf(nsISupports* aServMgr, const char* path)
|
NSUnregisterSelf(nsISupports* aServMgr, const char* path)
|
||||||
{
|
{
|
||||||
nsresult rv;
|
nsresult rv;
|
||||||
|
|
||||||
nsCOMPtr<nsIServiceManager> servMgr(do_QueryInterface(aServMgr, &rv));
|
nsCOMPtr<nsIServiceManager> servMgr(do_QueryInterface(aServMgr, &rv));
|
||||||
if (NS_FAILED(rv)) return rv;
|
if (NS_FAILED(rv)) return rv;
|
||||||
|
|
||||||
nsIComponentManager* compMgr;
|
nsIComponentManager* compMgr;
|
||||||
rv = servMgr->GetService(kComponentManagerCID,
|
rv = servMgr->GetService(kComponentManagerCID,
|
||||||
nsIComponentManager::GetIID(),
|
nsIComponentManager::GetIID(),
|
||||||
(nsISupports**)&compMgr);
|
(nsISupports**)&compMgr);
|
||||||
if (NS_FAILED(rv)) return rv;
|
if (NS_FAILED(rv)) return rv;
|
||||||
|
|
||||||
|
rv = compMgr->UnregisterComponent(kCComposeAppCoreCID, path);
|
||||||
|
if (NS_FAILED(rv)) goto done;
|
||||||
|
|
||||||
|
rv = compMgr->UnregisterComponent(kCComposerBootstrapCID, path);
|
||||||
|
if (NS_FAILED(rv)) goto done;
|
||||||
|
|
||||||
|
rv = compMgr->UnregisterComponent(kCComposerCID, path);
|
||||||
|
if (NS_FAILED(rv)) goto done;
|
||||||
|
|
||||||
rv = compMgr->UnregisterComponent(kCMsgComposeCID, path);
|
rv = compMgr->UnregisterComponent(kCMsgComposeCID, path);
|
||||||
if (NS_FAILED(rv)) goto done;
|
if (NS_FAILED(rv)) goto done;
|
||||||
rv = compMgr->UnregisterComponent(kCSmtpServiceCID, path);
|
|
||||||
if (NS_FAILED(rv)) goto done;
|
|
||||||
rv = compMgr->UnregisterComponent(kCMsgCompFieldsCID, path);
|
|
||||||
if (NS_FAILED(rv)) goto done;
|
|
||||||
rv = compMgr->UnregisterComponent(kCMsgSendCID, path);
|
|
||||||
|
|
||||||
done:
|
rv = compMgr->UnregisterComponent(kCMsgSendCID, path);
|
||||||
(void)servMgr->ReleaseService(kComponentManagerCID, compMgr);
|
if (NS_FAILED(rv)) goto done;
|
||||||
return rv;
|
|
||||||
|
rv = compMgr->UnregisterComponent(kCMsgCompFieldsCID, path);
|
||||||
|
if (NS_FAILED(rv)) goto done;
|
||||||
|
|
||||||
|
rv = compMgr->UnregisterComponent(kCSmtpServiceCID, path);
|
||||||
|
if (NS_FAILED(rv)) goto done;
|
||||||
|
|
||||||
|
done:
|
||||||
|
(void)servMgr->ReleaseService(kComponentManagerCID, compMgr);
|
||||||
|
return rv;
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,6 +30,8 @@ EXPORTS = \
|
||||||
nsSmtpUrl.h \
|
nsSmtpUrl.h \
|
||||||
nsSmtpProtocol.h \
|
nsSmtpProtocol.h \
|
||||||
nsSmtpService.h \
|
nsSmtpService.h \
|
||||||
|
nsComposeAppCore.h \
|
||||||
|
nsComposer.h \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
CPPSRCS = \
|
CPPSRCS = \
|
||||||
|
@ -41,6 +43,10 @@ CPPSRCS = \
|
||||||
nsMsgSend.cpp \
|
nsMsgSend.cpp \
|
||||||
nsMsgSendPart.cpp \
|
nsMsgSendPart.cpp \
|
||||||
nsSmtpService.cpp \
|
nsSmtpService.cpp \
|
||||||
|
nsJSComposeAppCore.cpp \
|
||||||
|
nsComposeAppCore.cpp \
|
||||||
|
nsComposer.cpp \
|
||||||
|
nsComposerNameSet.cpp \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
include $(topsrcdir)/config/config.mk
|
include $(topsrcdir)/config/config.mk
|
||||||
|
|
|
@ -34,6 +34,10 @@ CPPSRCS= nsMsgCompFields.cpp \
|
||||||
nsMsgSend.cpp \
|
nsMsgSend.cpp \
|
||||||
nsMsgSendPart.cpp \
|
nsMsgSendPart.cpp \
|
||||||
nsSmtpService.cpp \
|
nsSmtpService.cpp \
|
||||||
|
nsJSComposeAppCore.cpp \
|
||||||
|
nsComposeAppCore.cpp \
|
||||||
|
nsComposer.cpp \
|
||||||
|
nsComposerNameSet.cpp \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
CPP_OBJS= .\$(OBJDIR)\nsMsgCompFields.obj \
|
CPP_OBJS= .\$(OBJDIR)\nsMsgCompFields.obj \
|
||||||
|
@ -44,15 +48,31 @@ CPP_OBJS= .\$(OBJDIR)\nsMsgCompFields.obj \
|
||||||
.\$(OBJDIR)\nsMsgSend.obj \
|
.\$(OBJDIR)\nsMsgSend.obj \
|
||||||
.\$(OBJDIR)\nsMsgSendPart.obj \
|
.\$(OBJDIR)\nsMsgSendPart.obj \
|
||||||
.\$(OBJDIR)\nsSmtpService.obj \
|
.\$(OBJDIR)\nsSmtpService.obj \
|
||||||
|
.\$(OBJDIR)\nsJSComposeAppCore.obj \
|
||||||
|
.\$(OBJDIR)\nsComposeAppCore.obj \
|
||||||
|
.\$(OBJDIR)\nsComposer.obj \
|
||||||
|
.\$(OBJDIR)\nsComposerNameSet.obj \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
|
|
||||||
EXPORTS= nsSmtpUrl.h \
|
EXPORTS= nsSmtpUrl.h \
|
||||||
nsSmtpProtocol.h \
|
nsSmtpProtocol.h \
|
||||||
nsSmtpService.h \
|
nsSmtpService.h \
|
||||||
|
nsComposeAppCore.h \
|
||||||
|
nsComposer.h \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
LINCS=-I$(PUBLIC)\xpcom -I$(PUBLIC)\mailnews -I$(PUBLIC)\raptor -I$(PUBLIC)\netlib -I$(PUBLIC)\security -I$(PUBLIC)\rdf
|
LINCS= \
|
||||||
|
-I$(PUBLIC)\xpcom \
|
||||||
|
-I$(PUBLIC)\mailnews \
|
||||||
|
-I$(PUBLIC)\raptor \
|
||||||
|
-I$(PUBLIC)\netlib \
|
||||||
|
-I$(PUBLIC)\security \
|
||||||
|
-I$(PUBLIC)\rdf \
|
||||||
|
-I$(PUBLIC)\js \
|
||||||
|
-I$(PUBLIC)\dom \
|
||||||
|
-I$(PUBLIC)\appcores \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
LCFLAGS = \
|
LCFLAGS = \
|
||||||
$(LCFLAGS) \
|
$(LCFLAGS) \
|
||||||
|
|
Загрузка…
Ссылка в новой задаче