Addding xpcom init and shutdown. r=waterson

This commit is contained in:
dp%netscape.com 1999-10-21 21:31:53 +00:00
Родитель 22fa393a84
Коммит 6cd59a8e93
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -115,6 +115,8 @@ int main(int argc, char *argv[])
{
int ret = 0;
NS_InitXPCOM(NULL, NULL, NULL);
/* With no arguments, RegFactory will autoregister */
if (argc <= 1)
{
@ -126,5 +128,6 @@ int main(int argc, char *argv[])
else
ret = ProcessArgs(argc, argv);
NS_ShutdownXPCOM(NULL);
return ret;
}