2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#include "nsXULAppAPI.h"
|
|
|
|
|
|
|
|
void xxxNeverCalledXUL()
|
|
|
|
{
|
2012-05-25 03:01:29 -07:00
|
|
|
XRE_main(0, nsnull, nsnull, nsnull);
|
2007-03-22 10:30:00 -07:00
|
|
|
XRE_GetFileFromPath(nsnull, nsnull);
|
|
|
|
XRE_LockProfileDirectory(nsnull, nsnull);
|
2010-06-10 11:11:11 -07:00
|
|
|
XRE_InitEmbedding2(nsnull, nsnull, nsnull);
|
2007-03-22 10:30:00 -07:00
|
|
|
XRE_NotifyProfile();
|
|
|
|
XRE_TermEmbedding();
|
|
|
|
XRE_CreateAppData(nsnull, nsnull);
|
|
|
|
XRE_ParseAppData(nsnull, nsnull);
|
|
|
|
XRE_FreeAppData(nsnull);
|
2009-08-19 10:09:51 -07:00
|
|
|
XRE_ChildProcessTypeToString(GeckoProcessType_Default);
|
2009-07-10 23:33:10 -07:00
|
|
|
XRE_StringToChildProcessType("");
|
2009-10-23 12:36:25 -07:00
|
|
|
XRE_GetProcessType();
|
2009-08-19 10:09:51 -07:00
|
|
|
XRE_InitChildProcess(0, nsnull, GeckoProcessType_Default);
|
2009-07-10 23:33:10 -07:00
|
|
|
XRE_InitParentProcess(0, nsnull, nsnull, nsnull);
|
2009-08-28 12:46:21 -07:00
|
|
|
XRE_RunAppShell();
|
2009-12-03 00:16:28 -08:00
|
|
|
XRE_ShutdownChildProcess();
|
2009-08-28 16:16:19 -07:00
|
|
|
XRE_SendTestShellCommand(nsnull, nsnull, nsnull);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|