change from bool to PRBool. move mac commandline service before XPCom initialization

git-svn-id: svn://10.0.0.236/trunk@45972 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
davidm%netscape.com
1999-09-03 23:41:26 +00:00
parent 1622ba5d47
commit f8f9d03e79
3 changed files with 17 additions and 9 deletions

View File

@@ -135,9 +135,9 @@ void NS_HideSplashScreen()
{
}
bool NS_CanRun()
PRBool NS_CanRun()
{
return true;
return PR_TRUE;
}
#endif
/*
@@ -152,6 +152,9 @@ static int TranslateReturnValue(nsresult aResult)
return 1;
}
#ifdef XP_MAC
#include "nsCommandLineServiceMac.h"
#endif
extern "C" void NS_SetupRegistry_1();
@@ -745,9 +748,13 @@ static nsresult main1(int argc, char* argv[])
InitFullCircle();
#if XP_MAC
stTSMCloser tsmCloser;
#endif
#if XP_MAC
stTSMCloser tsmCloser;
InitializeMacCommandLine( argc, argv);
#endif
// XXX: This call will be replaced by a registry initialization...
NS_SetupRegistry_1();