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-07-30 07:20:58 -07:00
|
|
|
XRE_main(0, nullptr, nullptr, 0);
|
|
|
|
XRE_GetFileFromPath(nullptr, nullptr);
|
|
|
|
XRE_LockProfileDirectory(nullptr, nullptr);
|
|
|
|
XRE_InitEmbedding2(nullptr, nullptr, nullptr);
|
2007-03-22 10:30:00 -07:00
|
|
|
XRE_NotifyProfile();
|
|
|
|
XRE_TermEmbedding();
|
2012-07-30 07:20:58 -07:00
|
|
|
XRE_CreateAppData(nullptr, nullptr);
|
|
|
|
XRE_ParseAppData(nullptr, nullptr);
|
|
|
|
XRE_FreeAppData(nullptr);
|
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();
|
2012-07-30 07:20:58 -07:00
|
|
|
XRE_InitChildProcess(0, nullptr, GeckoProcessType_Default);
|
|
|
|
XRE_InitParentProcess(0, nullptr, nullptr, nullptr);
|
2009-08-28 12:46:21 -07:00
|
|
|
XRE_RunAppShell();
|
2009-12-03 00:16:28 -08:00
|
|
|
XRE_ShutdownChildProcess();
|
2012-07-30 07:20:58 -07:00
|
|
|
XRE_SendTestShellCommand(nullptr, nullptr, nullptr);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|