GSettings: properly support 'extends'
[glib.git] / gio / gsubprocesslauncher-private.h
blob538bf52f4f7d9d37e05b1e481f1f65108ed06c38
1 /* GIO - GLib Input, Output and Streaming Library
2 *
3 * Copyright (C) 2012 Colin Walters <walters@verbum.org>
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18 * Boston, MA 02111-1307, USA.
21 #ifndef __G_SUBPROCESS_CONTEXT_PRIVATE_H__
22 #define __G_SUBPROCESS_CONTEXT_PRIVATE_H__
24 #include "gsubprocesslauncher.h"
26 G_BEGIN_DECLS
28 struct _GSubprocessLauncher
30 GObject parent;
32 GSubprocessFlags flags;
33 gboolean path_from_envp;
34 char **envp;
35 char *cwd;
37 #ifdef G_OS_UNIX
38 gint stdin_fd;
39 gchar *stdin_path;
41 gint stdout_fd;
42 gchar *stdout_path;
44 gint stderr_fd;
45 gchar *stderr_path;
47 GArray *basic_fd_assignments;
48 GArray *needdup_fd_assignments;
50 GSpawnChildSetupFunc child_setup_func;
51 gpointer child_setup_user_data;
52 GDestroyNotify child_setup_destroy_notify;
53 #endif
56 void g_subprocess_set_launcher (GSubprocess *subprocess,
57 GSubprocessLauncher *launcher);
59 G_END_DECLS
61 #endif