Added service manager mechanism.

This commit is contained in:
warren%netscape.com 1998-08-28 21:28:35 +00:00
Родитель dff0de499c
Коммит 6587ecb0af
4 изменённых файлов: 6 добавлений и 2 удалений

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

@ -166,7 +166,7 @@ nsServiceManager::nsServiceManager(void)
}
static PRBool
DeleteEntry(nsHashKey *aKey, void *aData, void* closure)
DeleteEntry(nsHashKey *aKey, void *aData)
{
nsServiceEntry* entry = (nsServiceEntry*)aData;
entry->mService->Release();

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

@ -22,6 +22,7 @@ LIBRARY_NAME = xpcom
CPPSRCS = nsDebug.cpp \
nsHashtable.cpp \
nsID.cpp \
nsServiceManager.cpp \
nsSupportsArray.cpp \
nsRepository.cpp \
nsMalloc.cpp \
@ -36,6 +37,7 @@ EXPORTS = nsCom.h \
nsIFactory.h \
nsISupports.h \
nsIPtr.h \
nsIServiceManager.h \
nsISupportsArray.h \
nsRepository.h \
nsIEnumerator.h \

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

@ -27,6 +27,7 @@ LIBRARY_NAME = xpcom
CPPSRCS = nsDebug.cpp \
nsHashtable.cpp \
nsID.cpp \
nsServiceManager.cpp \
nsSupportsArray.cpp \
nsRepository.cpp \
nsMalloc.cpp \
@ -41,6 +42,7 @@ EXPORTS = nsCom.h \
nsIFactory.h \
nsISupports.h \
nsIPtr.h \
nsIServiceManager.h \
nsISupportsArray.h \
nsRepository.h \
nsIEnumerator.h \

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

@ -166,7 +166,7 @@ nsServiceManager::nsServiceManager(void)
}
static PRBool
DeleteEntry(nsHashKey *aKey, void *aData, void* closure)
DeleteEntry(nsHashKey *aKey, void *aData)
{
nsServiceEntry* entry = (nsServiceEntry*)aData;
entry->mService->Release();