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