2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
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
|
|
|
|
2009-03-09 14:27:48 -07:00
|
|
|
#ifndef MacLaunchHelper_h_
|
|
|
|
#define MacLaunchHelper_h_
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-01-10 08:19:36 -08:00
|
|
|
#include "mozilla/StandardInteger.h"
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
extern "C" {
|
2012-08-22 08:56:38 -07:00
|
|
|
void LaunchChildMac(int aArgc, char** aArgv, uint32_t aRestartType = 0,
|
2012-05-22 07:50:04 -07:00
|
|
|
pid_t *pid = 0);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|