1 | /* |
2 | * Copyright (C) 2003 Sun Microsystems Inc. |
3 | * |
4 | * This library is free software; you can redistribute it and/or |
5 | * modify it under the terms of the GNU Library General Public |
6 | * License as published by the Free Software Foundation; either |
7 | * version 2 of the License, or (at your option) any later version. |
8 | * |
9 | * This library is distributed in the hope that it will be useful, |
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
12 | * Library General Public License for more details. |
13 | * |
14 | * You should have received a copy of the GNU Library General Public |
15 | * License along with this library; if not, write to the |
16 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
17 | * Boston, MA 02111-1307, USA. |
18 | * |
19 | * Authors: Mark McLoughlin <[email protected]> |
20 | */ |
21 | |
22 | #ifndef __GDK_SPAWN_H__ |
23 | #define __GDK_SPAWN_H__ |
24 | |
25 | #if defined(GTK_DISABLE_SINGLE_INCLUDES) && !defined (__GDK_H_INSIDE__) && !defined (GDK_COMPILATION) |
26 | #error "Only <gdk/gdk.h> can be included directly." |
27 | #endif |
28 | |
29 | #include <gdk/gdkscreen.h> |
30 | |
31 | G_BEGIN_DECLS |
32 | |
33 | #ifndef GDK_DISABLE_DEPRECATED |
34 | gboolean gdk_spawn_on_screen (GdkScreen *screen, |
35 | const gchar *working_directory, |
36 | gchar **argv, |
37 | gchar **envp, |
38 | GSpawnFlags flags, |
39 | GSpawnChildSetupFunc child_setup, |
40 | gpointer user_data, |
41 | gint *child_pid, |
42 | GError **error); |
43 | |
44 | gboolean gdk_spawn_on_screen_with_pipes (GdkScreen *screen, |
45 | const gchar *working_directory, |
46 | gchar **argv, |
47 | gchar **envp, |
48 | GSpawnFlags flags, |
49 | GSpawnChildSetupFunc child_setup, |
50 | gpointer user_data, |
51 | gint *child_pid, |
52 | gint *standard_input, |
53 | gint *standard_output, |
54 | gint *standard_error, |
55 | GError **error); |
56 | |
57 | gboolean gdk_spawn_command_line_on_screen (GdkScreen *screen, |
58 | const gchar *command_line, |
59 | GError **error); |
60 | #endif |
61 | |
62 | G_END_DECLS |
63 | |
64 | #endif /* __GDK_SPAWN_H__ */ |
65 | |