]> Pileus Git - ~andy/gtk/blob - gdk/gdkspawn.h
Updated German translation
[~andy/gtk] / gdk / gdkspawn.h
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 <mark@skynet.ie>
20  */
21
22 #if defined(GTK_DISABLE_SINGLE_INCLUDES) && !defined (__GDK_H_INSIDE__) && !defined (GDK_COMPILATION)
23 #error "Only <gdk/gdk.h> can be included directly."
24 #endif
25
26 #ifndef __GDK_SPAWN_H__
27 #define __GDK_SPAWN_H__
28
29 #include <gdk/gdkscreen.h>
30
31 G_BEGIN_DECLS
32
33 gboolean gdk_spawn_on_screen              (GdkScreen             *screen,
34                                            const gchar           *working_directory,
35                                            gchar                **argv,
36                                            gchar                **envp,
37                                            GSpawnFlags            flags,
38                                            GSpawnChildSetupFunc   child_setup,
39                                            gpointer               user_data,
40                                            gint                  *child_pid,
41                                            GError               **error);
42
43 gboolean gdk_spawn_on_screen_with_pipes   (GdkScreen             *screen,
44                                            const gchar           *working_directory,
45                                            gchar                **argv,
46                                            gchar                **envp,
47                                            GSpawnFlags            flags,
48                                            GSpawnChildSetupFunc   child_setup,
49                                            gpointer               user_data,
50                                            gint                  *child_pid,
51                                            gint                  *standard_input,
52                                            gint                  *standard_output,
53                                            gint                  *standard_error,
54                                            GError               **error);
55
56 gboolean gdk_spawn_command_line_on_screen (GdkScreen             *screen,
57                                            const gchar           *command_line,
58                                            GError               **error);
59
60 G_END_DECLS
61
62 #endif /* __GDK_SPAWN_H__ */