Sort the list of files being processed by glib-mkenums
[glib.git] / gio / gsubprocesslauncher-private.h
blob64374a02d86c0f95b17154d2eba3c4c3e3fa37d3
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.1 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, see <http://www.gnu.org/licenses/>.
19 #ifndef __G_SUBPROCESS_CONTEXT_PRIVATE_H__
20 #define __G_SUBPROCESS_CONTEXT_PRIVATE_H__
22 #include "gsubprocesslauncher.h"
24 G_BEGIN_DECLS
26 struct _GSubprocessLauncher
28 GObject parent;
30 GSubprocessFlags flags;
31 gboolean path_from_envp;
32 char **envp;
33 char *cwd;
35 #ifdef G_OS_UNIX
36 gint stdin_fd;
37 gchar *stdin_path;
39 gint stdout_fd;
40 gchar *stdout_path;
42 gint stderr_fd;
43 gchar *stderr_path;
45 GArray *basic_fd_assignments;
46 GArray *needdup_fd_assignments;
48 GSpawnChildSetupFunc child_setup_func;
49 gpointer child_setup_user_data;
50 GDestroyNotify child_setup_destroy_notify;
51 #endif
54 void g_subprocess_set_launcher (GSubprocess *subprocess,
55 GSubprocessLauncher *launcher);
57 G_END_DECLS
59 #endif