follow up on 71948. fixed build problems on windows
This commit is contained in:
idk%eng.sun.com 2001-04-06 19:18:46 +00:00
Родитель ce5ef6cf8f
Коммит 05eb2f2704
3 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@ -29,7 +29,7 @@ JAVAXPIDLSRCS = nsISupports.idl \
nsIComponentManager.idl \ nsIComponentManager.idl \
nsIFactory.idl \ nsIFactory.idl \
nsISupportsPrimitives.idl \ nsISupportsPrimitives.idl \
nsIXPIDLServiceManager \ nsIXPIDLServiceManager.idl \
$(NULL) $(NULL)
include <$(DEPTH)\config\rules.mak> include <$(DEPTH)\config\rules.mak>

Просмотреть файл

@ -42,7 +42,7 @@ bcXPCOMWrappers::GetWrapper(nsISupports *wrapped,const nsIID & wrappedIID, nsIID
nsresult r = NS_OK; nsresult r = NS_OK;
if (wrappedIID.Equals(NS_GET_IID(nsIServiceManager))) { if (wrappedIID.Equals(NS_GET_IID(nsIServiceManager))) {
*_retval = new nsXPIDLServiceManager(); *_retval = new nsXPIDLServiceManager();
*wrapperIID = & NS_GET_IID(nsIXPIDLServiceManager); *wrapperIID = (nsIID*) & NS_GET_IID(nsIXPIDLServiceManager);
NS_ADDREF(*_retval); NS_ADDREF(*_retval);
} else { } else {
r = NS_ERROR_FAILURE; r = NS_ERROR_FAILURE;

Просмотреть файл

@ -31,13 +31,13 @@ DLLNAME = bcXPCOMWrappers
DLL=.\$(OBJDIR)\$(DLLNAME).dll DLL=.\$(OBJDIR)\$(DLLNAME).dll
XPIDLSRCS = \ XPIDLSRCS = \
bcIXPCOMWrappers.idl \ .\bcIXPCOMWrappers.idl \
nsIXPIDLServiceManagerpublic.idl \ .\nsIXPIDLServiceManager.idl \
$(NULL) $(NULL)
EXPORTS = \ EXPORTS = \
bcXPCOMWrappers.h \ .\bcXPCOMWrappers.h \
bcXPCOMWrappersCID.h \ .\bcXPCOMWrappersCID.h \
$(NULL) $(NULL)
OBJS= \ OBJS= \